×

struts2上传pdf文件

struts2上传pdf文件(struts 上传文件)

admin admin 发表于2023-04-05 04:07:12 浏览41 评论0

抢沙发发表评论

本文目录一览:

百度ueditor能不能上传pdf

可以上传的,如果不能上传,在js代码里设置下;一般百度官方下载的ueditor编辑器,默认都是带了PDF上传功能的,参考如下官方代码:

//默认值:

[

".png", ".jpg", ".jpeg", ".gif", ".bmp",

".flv", ".swf", ".mkv", ".avi", ".rm", ".rmvb", ".mpeg", ".mpg",

".ogg", ".ogv", ".mov", ".wmv", ".mp4", ".webm", ".mp3", ".wav", ".mid",

".rar", ".zip", ".tar", ".gz", ".7z", ".bz2", ".cab", ".iso",

".doc", ".docx", ".xls", ".xlsx", ".ppt", ".pptx", ".pdf", ".txt", ".md", ".xml"

]

如何上传pdf文件

有多种方法可以上传。

1、可以使用网页/客户端云盘,上传PDF文件。

2、或者QQ中的微云,上传后,分享链接;共其他人使用。

3、或者是邮箱等。

4、如果对传,可以用微信,或者QQ聊天窗口。

jquery+struts2 上传文件

后台代码:

upload.jsp页面代码:

%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%

%

String path = request.getContextPath();

String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";-struts2上传pdf文件

%

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

html

head

base href="%=basePath%"

titleMy JSP 'upload2.jsp' starting page/title

meta http-equiv="pragma" content="no-cache"

meta http-equiv="cache-control" content="no-cache"

meta http-equiv="expires" content="0"

meta http-equiv="keywords" content="keyword1,keyword2,keyword3"

meta http-equiv="description" content="This is my page"

!--

link rel="stylesheet" type="text/css" href="styles.css"

--

/head

body

form action="/struts2/UploadServlet" method="post" enctype="multipart/form-data"

username: input type="text" name="username"br

password: input type="password" name="password"br

file1: input type="file" name="file1"br

file2: input type="file" name="file2"br

input type="submit" value="submit"

/form

/body

/html

UploadAction.jsp代码:

package com.test.action;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.InputStream;

import java.io.OutputStream;

import java.util.List;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

@SuppressWarnings("serial")

public class UploadAction extends ActionSupport

{

private String username;

private String password;

private ListFile file;

private ListString fileFileName;

private ListString fileContentType;

public String getUsername()

{

return username;

}

public void setUsername(String username)

{

this.username = username;

}

public String getPassword()

{

return password;

}

public void setPassword(String password)

{

this.password = password;

}

public ListFile getFile()

{

return file;

}

public void setFile(ListFile file)

{

this.file = file;

}

public ListString getFileFileName()

{

return fileFileName;

}

public void setFileFileName(ListString fileFileName)

{

this.fileFileName = fileFileName;

}

public ListString getFileContentType()

{

return fileContentType;

}

public void setFileContentType(ListString fileContentType)

{

this.fileContentType = fileContentType;

}

@SuppressWarnings("deprecation")

@Override

public String execute() throws Exception

{

for (int i = 0; i file.size(); ++i)

{

InputStream is = new FileInputStream(file.get(i));

String root = ServletActionContext.getRequest().getRealPath("/upload");

File destFile = new File(root, this.getFileFileName().get(i));

OutputStream os = new FileOutputStream(destFile);

byte[] buffer = new byte[400];

int length = 0;

while ((length = is.read(buffer)) 0)

{

os.write(buffer, 0, length);

}

is.close();

os.close();

}

return SUCCESS;

}

}

struts.xml代码:

action name="upload" class="com.test.action.UploadAction"

result name="success"/uploadResult.jsp/result

result name="input"/upload.jsp/result

interceptor-ref name="fileUpload"

param name="maximumSize"40960/param

param name="allowedTypes"application/vnd.ms-powerpoint/param

/interceptor-ref

interceptor-ref name="defaultStack"/interceptor-ref

/action

struts2上传问题,怎样让上传的文件不覆盖之前的文件

我们知道同样文件名的文件不能存储在一起,这是系统的问题,暂时无法改变,上传文件相同,那只有两种可能,要么覆盖原来的,要么上传失败。

我想这个问题有两个解决方案:

1、改变使用原来文件名保存文件的方法,也就是说,我们将上传的文件的文件名重新命名,可以采用一个精确的系统时间如:20110925172537408,这样使得每一个上传的文件都不会冲突。不过这就需要建一张表,保存原来的文件名,和改了之后的文件名,方便上传之后的添删改查。-struts2上传pdf文件

2、上传时,检查是否有重复命名,如有重复命名,可以修改上传的文件名,增加一些特殊的标志,如:重复文件.txt 改为 重复文件[1].txt。

希望对你有所帮助。

如何上传文档PDF

上传PDF文档的方法:

一、上传网站支持PDF格式的文件直接上传:

1、打开上传文件页面;

2、在添加文件的选框下方,将文件类型选为所有文件或者是PDF格式;

3、添加上传的文件;

4、点击上传文件。

二、上传网站不支持PDF格式的文件直接上传:

1、将PDF格式的文件压缩成为rar或者zip的压缩包;

2、打开上传文件页面;

3、在添加文件的选框下方,将文件类型选为所有文件;

4

java中怎么利用struts2上传多个pdf文件

通过3种方式模拟多个文件上传

第一种方式

package com.ljq.action;

import java.io.File;

import org.apache.commons.io.FileUtils;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionContext;

import com.opensymphony.xwork2.ActionSupport;

@SuppressWarnings("serial")

public class UploadAction extends ActionSupport{

private File[] image; //上传的文件

private String[] imageFileName; //文件名称

private String[] imageContentType; //文件类型

public String execute() throws Exception {

ServletActionContext.getRequest().setCharacterEncoding("UTF-8");

String realpath = ServletActionContext.getServletContext().getRealPath("/images");

System.out.println(realpath);

if (image != null) {

File savedir=new File(realpath);

if(!savedir.getParentFile().exists())

savedir.getParentFile().mkdirs();

for(int i=0;iimage.length;i++){

File savefile = new File(savedir, imageFileName[i]);

FileUtils.copyFile(image[i], savefile);

}

ActionContext.getContext().put("message", "文件上传成功");

}

return "success";

}

public File[] getImage() {

return image;

}

public void setImage(File[] image) {

this.image = image;

}

public String[] getImageContentType() {

return imageContentType;

}

public void setImageContentType(String[] imageContentType) {

this.imageContentType = imageContentType;

}

public String[] getImageFileName() {

return imageFileName;

}

public void setImageFileName(String[] imageFileName) {

this.imageFileName = imageFileName;

}

}

第二种方式

package com.ljq.action;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

/**

* 使用数组上传多个文件

*

* @author ljq

*

*/

@SuppressWarnings("serial")

public class UploadAction2 extends ActionSupport{

private File[] image; //上传的文件

private String[] imageFileName; //文件名称

private String[] imageContentType; //文件类型

private String savePath;

@Override

public String execute() throws Exception {

ServletActionContext.getRequest().setCharacterEncoding("UTF-8");

//取得需要上传的文件数组

File[] files = getImage();

if (files !=null files.length 0) {

for (int i = 0; i files.length; i++) {

//建立上传文件的输出流, getImageFileName()[i]

System.out.println(getSavePath() + "\\" + getImageFileName()[i]);

FileOutputStream fos = new FileOutputStream(getSavePath() + "\\" + getImageFileName()[i]);-struts2上传pdf文件

//建立上传文件的输入流

FileInputStream fis = new FileInputStream(files[i]);

byte[] buffer = new byte[1024];

int len = 0;

while ((len=fis.read(buffer))0) {

fos.write(buffer, 0, len);

}

fos.close();

fis.close();

}

}

return SUCCESS;

}

public File[] getImage() {

return image;

}

public void setImage(File[] image) {

this.image = image;

}

public String[] getImageFileName() {

return imageFileName;

}

public void setImageFileName(String[] imageFileName) {

this.imageFileName = imageFileName;

}

public String[] getImageContentType() {

return imageContentType;

}

public void setImageContentType(String[] imageContentType) {

this.imageContentType = imageContentType;

}

/**

* 返回上传文件保存的位置

*

* @return

* @throws Exception

*/

public String getSavePath() throws Exception {

return ServletActionContext.getServletContext().getRealPath(savePath);

}

public void setSavePath(String savePath) {

this.savePath = savePath;

}

}

第三种方式

package com.ljq.action;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.util.List;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

/**

* 使用List上传多个文件

*

* @author ljq

*

*/

@SuppressWarnings("serial")

public class UploadAction3 extends ActionSupport {

private ListFile image; // 上传的文件

private ListString imageFileName; // 文件名称

private ListString imageContentType; // 文件类型

private String savePath;

@Override

public String execute() throws Exception {

ServletActionContext.getRequest().setCharacterEncoding("UTF-8");

// 取得需要上传的文件数组

ListFile files = getImage();

if (files != null files.size() 0) {

for (int i = 0; i files.size(); i++) {

FileOutputStream fos = new FileOutputStream(getSavePath() + "\\" + getImageFileName().get(i));-struts2上传pdf文件

FileInputStream fis = new FileInputStream(files.get(i));

byte[] buffer = new byte[1024];

int len = 0;

while ((len = fis.read(buffer)) 0) {

fos.write(buffer, 0, len);

}

fis.close();

fos.close();

}

}

return SUCCESS;

}

public ListFile getImage() {

return image;

}

public void setImage(ListFile image) {

this.image = image;

}

public ListString getImageFileName() {

return imageFileName;

}

public void setImageFileName(ListString imageFileName) {

this.imageFileName = imageFileName;

}

public ListString getImageContentType() {

return imageContentType;

}

public void setImageContentType(ListString imageContentType) {

this.imageContentType = imageContentType;

}

/**

* 返回上传文件保存的位置

*

* @return

* @throws Exception

*/

public String getSavePath() throws Exception {

return ServletActionContext.getServletContext().getRealPath(savePath);

}

public void setSavePath(String savePath) {

this.savePath = savePath;

}

}

struts.xml配置文件

?xml version="1.0" encoding="UTF-8" ?

!DOCTYPE struts PUBLIC

"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"

""

struts

!-- 该属性指定需要Struts2处理的请求后缀,该属性的默认值是action,即所有匹配*.action的请求都由Struts2处理。

如果用户需要指定多个请求后缀,则多个后缀之间以英文逗号(,)隔开。 --

constant name="struts.action.extension" value="do" /

!-- 设置浏览器是否缓存静态内容,默认值为true(生产环境下使用),开发阶段最好关闭 --

constant name="struts.serve.static.browserCache" value="false" /

!-- 当struts的配置文件修改后,系统是否自动重新加载该文件,默认值为false(生产环境下使用),开发阶段最好打开 --

constant name="struts.configuration.xml.reload" value="true" /

!-- 开发模式下使用,这样可以打印出更详细的错误信息 --

constant name="struts.devMode" value="true" /

!-- 默认的视图主题 --

constant name="struts.ui.theme" value="simple" /

!--constant name="struts.objectFactory" value="spring" /--

!--解决乱码 --

constant name="struts.i18n.encoding" value="UTF-8" /

constant name="struts.multipart.maxSize" value="10701096"/

package name="upload" namespace="/upload" extends="struts-default"

action name="*_upload" class="com.ljq.action.UploadAction" method="{1}"

result name="success"/WEB-INF/page/message.jsp/result

/action

/package

package name="upload1" namespace="/upload1" extends="struts-default"

action name="upload1" class="com.ljq.action.UploadAction2" method="execute"

!-- 要创建/image文件夹,否则会报找不到文件 --

param name="savePath"/image/param

result name="success"/WEB-INF/page/message.jsp/result

/action

/package

package name="upload2" namespace="/upload2" extends="struts-default"

action name="upload2" class="com.ljq.action.UploadAction3" method="execute"

!-- 要创建/image文件夹,否则会报找不到文件 --

param name="savePath"/image/param

result name="success"/WEB-INF/page/message.jsp/result

/action

/package

/struts

上传表单页面upload.jsp

%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

html

head

title文件上传/title

meta http-equiv="pragma" content="no-cache"

meta http-equiv="cache-control" content="no-cache"

meta http-equiv="expires" content="0"

/head

body

!-- ${pageContext.request.contextPath}/upload/execute_upload.do --

!-- ${pageContext.request.contextPath}/upload1/upload1.do --

!-- ${pageContext.request.contextPath}/upload2/upload2.do --

!-- --

form action="${pageContext.request.contextPath}/upload2/upload2.do" enctype="multipart/form-data" method="post"-struts2上传pdf文件

文件1:input type="file" name="image"br/

文件2:input type="file" name="image"br/

文件3:input type="file" name="image"br/

input type="submit" value="上传" /

/form

/body

/html

显示页面message.jsp

%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%

%@ taglib uri="/struts-tags" prefix="s"%

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

html

head

titleMy JSP 'message.jsp' starting page/title

meta http-equiv="pragma" content="no-cache"

meta http-equiv="cache-control" content="no-cache"

meta http-equiv="expires" content="0"

/head

body

上传成功

br/

s:debug/s:debug

/body

/html