本文实例为大家分享了struts2实现文件上传下载的具体实现代码,供大家参考,具体内容如下
一、文件上传
struts提交的文件组件上传,
前台:
1)、提交方式post
2)、表单类型 multipart/form-data
3)、input type=file
后台:apache提供的fileupload组件
核心类:fileitemfactory fileitem的工厂
servletfileupload servlet 中的文件上传的核心类
fileitem 封装了上传的表单文件项的信息
总之 文件上传,处理起来比较麻烦
struts的文件上传
文件上传拦截器帮助我们晚场了文件上传的功能
name="fileupload"
class="org.apache.structs2.interceptor.fileuploadinterceptor"/>
upload.xml
txt,jpg,jar
/e/success.jsp
/e/error.jsp
upload.jsp
用户名:
文件:
error.jsp
error.jsp
success.jsp
success.jsp
核心代码
fileupload .class
public class fileupload extends actionsupport {
// 对应表单:
private file file1;
// 文件名
private string file1filename;
// 文件的类型(mime)
private string file1contenttype;
public void setfile1(file file1) {
this.file1 = file1;
}
public void setfile1filename(string file1filename) {
this.file1filename = file1filename;
}
public void setfile1contenttype(string file1contenttype) {
this.file1contenttype = file1contenttype;
}
@override
public string execute() throws exception {
/******拿到上传的文件,进行处理******/
// 把文件上传到upload目录
// 获取上传的目录路径
string path = servletactioncontext.getservletcontext().getrealpath("/upload");
// 创建目标文件对象
file destfile = new file(path,file1filename);
// 把上传的文件,拷贝到目标文件中
fileutils.copyfile(file1, destfile);
return success;
}
}
文件上传处理细节
a.文件大小限制
structs默认支持的文件上传最大是2m,通过常量修改:
b.限制上传文件的允许类型
需求:只允许txt/jpg后缀的文件
拦截器:注入参数从而限制文件上传类型
txt,jpg,jar
二、文件的下载
struts文件下载,2种方式:
方式1:通过response对象向浏览器写入字节流数据;设置下载的响应头
方式2:struts的方式
struts的文件下载:
首先注意在webroot目录下新建 upload 文件夹,把你要提供下载的文件放到该文件夹下,
upload.xml
/e/list.jsp
application/octet-stream
attrinputstream
attachment;filename=${downfilename}
1024
list.jsp
编号 | 文件名 | 操作 |
${vs.count } | ${filename } |
downaction
/**
* 文件下载
* 1. 显示所有要下载文件的列表
* 2. 文件下载
*
*/
public class downaction extends actionsupport {
/*************1. 显示所有要下载文件的列表*********************/
public string list() throws exception {
//得到upload目录路径
string path = servletactioncontext.getservletcontext().getrealpath("/upload");
// 目录对象
file file = new file(path);
// 得到所有要下载的文件的文件名
string[] filenames = file.list();
// 保存
actioncontext ac = actioncontext.getcontext();
// 得到代表request的map (第二种方式)
map request= (map) ac.get("request");
request.put("filenames", filenames);
return "list";
}
/*************2. 文件下载*********************/
// 1. 获取要下载的文件的文件名
private string filename;
public void setfilename(string filename) {
// 处理传入的参数中问题(get提交)
try {
filename = new string(filename.getbytes("iso8859-1"),"utf-8");
} catch (unsupportedencodingexception e) {
throw new runtimeexception(e);
}
// 把处理好的文件名,赋值
this.filename = filename;
}
//2. 下载提交的业务方法 (在struts.xml中配置返回stream)
public string down() throws exception {
return "download";
}
// 3. 返回文件流的方法
public inputstream getattrinputstream(){
return servletactioncontext.getservletcontext().getresourceasstream("/upload/" + filename);
}
// 4. 下载显示的文件名(浏览器显示的文件名)
public string getdownfilename() {
// 需要进行中文编码
try {
filename = urlencoder.encode(filename, "utf-8");
} catch (unsupportedencodingexception e) {
throw new runtimeexception(e);
}
return filename;
}
}
以上就是本文的全部内容,希望对大家的学习有所帮助。
如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!