使用struts2实现文件上传

action中

 private File file;//文件
private String fileFileName;//文件名字 固定格式name+FileName
private String fileContentType;//文件类型 name+ContentType

Action中定义的File类型的成员变量file实际上指向的是临时目录(struts.multipart.saveDir键所指定的目录中,如果该键对应的目录不存在,那么就保存到javax.servlet.context.tempdir环境变量所指定的目录中)中的临时文件,然后在服务器端通过IO的方式将临时文件写入到指定的服务器端目录中。

上传多文件时,在客户端jsp页面中文件的name="file" name值都叫file

action

 1 private List<File> file;
2 private List<String> fileFileName;
3 private List<String> fileContentType;
 public String execute() throws Exception
{
for(int i=0;i<file.size();i++){
InputStream is=new FileInputStream(file.get(i));
String path=ServletActionContext.getRequest().getRealPath("/upload");
File f=new File(path,fileFileName.get(i));
OutputStream os=new FileOutputStream(f);
byte[] buffer=new byte[400];
int length=0;
while(-1!=(length=is.read(buffer))){
os.write(buffer,0,length); }
is.close();
os.close(); }
return SUCCESS;
}

struts.xml中可以设置fileUpload拦截器中设置最大上传的大小

<interceptor-ref name="fileUpload">

  <param name="maximumSize">1024*1024</param>

</interceptor-ref>

另一种方式:

struts.properties中

struts.multipart.maxSize=10485760

在xml中配置

struts.xml中

<constant name="struts.multipart.maxSize" value="1048576000"/>

上一篇:canvas,画个纸飞机


下一篇:Web性能测试参数