`
453898875
  • 浏览: 12572 次
  • 性别: Icon_minigender_1
  • 来自: 沈阳
文章分类
社区版块
存档分类
最新评论

Struts2 文件上传,下载,删除

阅读更多

本文介绍了:
1.基于表单的文件上传
2.Struts 2 的文件下载
3.Struts2.文件上传
4.使用FileInputStream FileOutputStream文件流来上传
5.使用FileUtil上传
6.使用IOUtil上传
7.使用IOUtil上传
8.使用数组上传多个文件
9.使用List上传多个文件

----1.基于表单的文件上传-----
fileupload.jsp

Html代码 复制代码收藏代码
  1. <body>
  2. <formaction="showFile.jsp"name="myForm"method="post"enctype="multipart/form-data">
  3. 选择上传的文件
  4. <inputtype="file"name="myfile"><br/><br/>
  5. <inputtype="submit"name="mySubmit"value="上传"/>
  6. </form>
  7. </body>
 <body>
  	<form action="showFile.jsp" name="myForm" method="post" enctype="multipart/form-data">
  		选择上传的文件
  		<input type="file" name="myfile"><br/><br/>
  		<input type="submit" name="mySubmit" value="上传"/> 
  	</form>
  </body>


showFile.jsp

Html代码 复制代码收藏代码
  1. <body>
  2. 上传的文件的内容如下:
  3. <%
  4. InputStreamis=request.getInputStream();
  5. InputStreamReaderisr=newInputStreamReader(is);
  6. BufferedReaderbr=newBufferedReader(isr);
  7. Stringcontent=null;
  8. while((content=br.readLine())!=null){
  9. out.print(content+"<br/>");
  10. }
  11. %>
  12. </body>
<body>
     上传的文件的内容如下:
     <%
     InputStream is=request.getInputStream();
     InputStreamReader isr=new InputStreamReader(is);
     BufferedReader br=new BufferedReader(isr);
     String content=null;
     while((content=br.readLine())!=null){
    	 out.print(content+"<br/>");
     }
     %>
  </body>



----2.手动上传-----

Java代码 复制代码收藏代码
  1. 通过二进制刘获取上传文件的内容,并将上传的文件内容保存到服务器的某个目录,这样就实现了文件上传。由于这个处理过程完全依赖与开发自己处理二进制流,所以也称为“手动上传”。
  2. 从上面的第一个例子可以看到,使用二进制流获取的上传文件的内容与实际文件的内容有还是有一定的区别,包含了很多实际文本中没有的字符。所以需要对获取的内容进行解析,去掉额外的字符。
通过二进制刘获取上传文件的内容,并将上传的文件内容保存到服务器的某个目录,这样就实现了文件上传。由于这个处理过程完全依赖与开发自己处理二进制流,所以也称为“手动上传”。
从上面的第一个例子可以看到,使用二进制流获取的上传文件的内容与实际文件的内容有还是有一定的区别,包含了很多实际文本中没有的字符。所以需要对获取的内容进行解析,去掉额外的字符。



----3 Struts2.文件上传----

Java代码 复制代码收藏代码
  1. Struts2中使用Common-fileUpload文件上传框架,需要在web应用中增加两个Jar文件,即commons-fileupload.jar.commons-io.jar
  2. 需要使用fileUpload拦截器:具体的说明在struts2-core-2.3.4.jar\org.apache.struts2.interceptor\FileUploadInterceptor.class里面
  3. 下面来看看一点源代码
Struts2中使用Common-fileUpload文件上传框架,需要在web应用中增加两个Jar 文件, 即 commons-fileupload.jar. commons-io.jar

需要使用fileUpload拦截器:具体的说明在 struts2-core-2.3.4.jar \org.apache.struts2.interceptor\FileUploadInterceptor.class 里面 
下面来看看一点源代码

Java代码 复制代码收藏代码
  1. publicclassFileUploadInterceptorextendsAbstractInterceptor{
  2. privatestaticfinallongserialVersionUID=-4764627478894962478L;
  3. protectedstaticfinalLoggerLOG=LoggerFactory.getLogger(FileUploadInterceptor.class);
  4. privatestaticfinalStringDEFAULT_MESSAGE="no.message.found";
  5. protectedbooleanuseActionMessageBundle;
  6. protectedLongmaximumSize;
  7. protectedSet<String>allowedTypesSet=Collections.emptySet();
  8. protectedSet<String>allowedExtensionsSet=Collections.emptySet();
  9. privatePatternMatchermatcher;
  10. @Inject
  11. publicvoidsetMatcher(PatternMatchermatcher){
  12. this.matcher=matcher;
  13. }
  14. publicvoidsetUseActionMessageBundle(Stringvalue){
  15. this.useActionMessageBundle=Boolean.valueOf(value);
  16. }
  17. //这就是struts.xml中param为什么要配置为allowedExtensions
  18. publicvoidsetAllowedExtensions(StringallowedExtensions){
  19. allowedExtensionsSet=TextParseUtil.commaDelimitedStringToSet(allowedExtensions);
  20. }
  21. //这就是struts.xml中param为什么要配置为allowedTypes而不是上面的allowedTypesSet
  22. publicvoidsetAllowedTypes(StringallowedTypes){
  23. allowedTypesSet=TextParseUtil.commaDelimitedStringToSet(allowedTypes);
  24. }
  25. publicvoidsetMaximumSize(LongmaximumSize){
  26. this.maximumSize=maximumSize;
  27. }
  28. }
public class FileUploadInterceptor extends AbstractInterceptor {

    private static final long serialVersionUID = -4764627478894962478L;

    protected static final Logger LOG = LoggerFactory.getLogger(FileUploadInterceptor.class);
    private static final String DEFAULT_MESSAGE = "no.message.found";

    protected boolean useActionMessageBundle;

    protected Long maximumSize;
    protected Set<String> allowedTypesSet = Collections.emptySet();
    protected Set<String> allowedExtensionsSet = Collections.emptySet();

    private PatternMatcher matcher;

 @Inject
    public void setMatcher(PatternMatcher matcher) {
        this.matcher = matcher;
    }

    public void setUseActionMessageBundle(String value) {
        this.useActionMessageBundle = Boolean.valueOf(value);
    }

    //这就是struts.xml 中param为什么要配置为 allowedExtensions
    public void setAllowedExtensions(String allowedExtensions) {
        allowedExtensionsSet = TextParseUtil.commaDelimitedStringToSet(allowedExtensions);
    }
    //这就是struts.xml 中param为什么要配置为 allowedTypes 而不是 上面的allowedTypesSet 
    public void setAllowedTypes(String allowedTypes) {
        allowedTypesSet = TextParseUtil.commaDelimitedStringToSet(allowedTypes);
    }

    public void setMaximumSize(Long maximumSize) {
        this.maximumSize = maximumSize;
    }
}

Html代码 复制代码收藏代码
  1. 官员文件初始值大小上面的类中的说明
  2. <li>maximumSize(optional)-themaximumsize(inbytes)thattheinterceptorwillallowafilereferencetobeset
  3. *ontheaction.Note,thisis<b>not</b>relatedtothevariouspropertiesfoundinstruts.properties.
  4. *Defaulttoapproximately2MB.</li>
  5. 具体说的是这个值在struts.properties中有设置。下面就来看里面的设置
  6. ###ParsertohandleHTTPPOSTrequests,encodedusingtheMIME-typemultipart/form-data
  7. 文件上传解析器
  8. #struts.multipart.parser=cos
  9. #struts.multipart.parser=pell
  10. #默认使用jakata框架上传文件
  11. struts.multipart.parser=jakarta
  12. #上传时候默认的临时文件目录
  13. #usesjavax.servlet.context.tempdirbydefault
  14. struts.multipart.saveDir=
  15. #上传时候默认的大小
  16. struts.multipart.maxSize=2097152
官员文件初始值大小 上面的类中的说明
<li>maximumSize (optional) - the maximum size (in bytes) that the interceptor will allow a file reference to be set
 * on the action. Note, this is <b>not</b> related to the various properties found in struts.properties.
 * Default to approximately 2MB.</li>
具体说的是这个值在struts.properties 中有设置。 下面就来看 里面的设置

### Parser to handle HTTP POST requests, encoded using the MIME-type multipart/form-data

文件上传解析器  
# struts.multipart.parser=cos
# struts.multipart.parser=pell
#默认 使用jakata框架上传文件
struts.multipart.parser=jakarta

#上传时候 默认的临时文件目录  
# uses javax.servlet.context.tempdir by default
struts.multipart.saveDir=

#上传时候默认的大小
struts.multipart.maxSize=2097152



案例:使用FileInputStream FileOutputStream文件流来上传
action.java

Java代码 复制代码收藏代码
  1. packagecom.sh.action;
  2. importjava.io.File;
  3. importjava.io.FileInputStream;
  4. importjava.io.FileOutputStream;
  5. importorg.apache.struts2.ServletActionContext;
  6. importcom.opensymphony.xwork2.ActionSupport;
  7. publicclassMyUpActionextendsActionSupport{
  8. privateFileupload;//上传的文件
  9. privateStringuploadContentType;//文件的类型
  10. privateStringuploadFileName;//文件名称
  11. privateStringsavePath;//文件上传的路径
  12. //注意这里的保存路径
  13. publicStringgetSavePath(){
  14. returnServletActionContext.getRequest().getRealPath(savePath);
  15. }
  16. publicvoidsetSavePath(StringsavePath){
  17. this.savePath=savePath;
  18. }
  19. @Override
  20. publicStringexecute()throwsException{
  21. System.out.println("type:"+this.uploadContentType);
  22. StringfileName=getSavePath()+"\\"+getUploadFileName();
  23. FileOutputStreamfos=newFileOutputStream(fileName);
  24. FileInputStreamfis=newFileInputStream(getUpload());
  25. byte[]b=newbyte[1024];
  26. intlen=0;
  27. while((len=fis.read(b))>0){
  28. fos.write(b,0,len);
  29. }
  30. fos.flush();
  31. fos.close();
  32. fis.close();
  33. returnSUCCESS;
  34. }
  35. //getset
  36. }
package com.sh.action;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

public class MyUpAction extends ActionSupport {
	
	private File upload; //上传的文件
	private String uploadContentType; //文件的类型
	private String uploadFileName; //文件名称
	private String savePath; //文件上传的路径
	
//注意这里的保存路径
	public String getSavePath() {
		return ServletActionContext.getRequest().getRealPath(savePath);
	}
	public void setSavePath(String savePath) {
		this.savePath = savePath;
	}
	@Override
	public String execute() throws Exception {
		System.out.println("type:"+this.uploadContentType);
		String fileName=getSavePath()+"\\"+getUploadFileName();
		FileOutputStream fos=new FileOutputStream(fileName);
		FileInputStream fis=new FileInputStream(getUpload());
		byte[] b=new byte[1024];
		int len=0;
		while ((len=fis.read(b))>0) {
			fos.write(b,0,len);
		}
		fos.flush();
		fos.close();
		fis.close();
		return SUCCESS;
	}
//get set
}



struts.xml

Xml代码 复制代码收藏代码
  1. <?xmlversion="1.0"encoding="UTF-8"?>
  2. <!DOCTYPEstrutsPUBLIC
  3. "-//ApacheSoftwareFoundation//DTDStrutsConfiguration2.3//EN"
  4. "http://struts.apache.org/dtds/struts-2.3.dtd">
  5. <struts>
  6. <constantname="struts.i18n.encoding"value="utf-8"/>
  7. <constantname="struts.devMode"value="true"/>
  8. <constantname="struts.convention.classes.reload"value="true"/>
  9. <constantname="struts.multipart.saveDir"value="f:/tmp"/>
  10. <packagename="/user"extends="struts-default">
  11. <actionname="up"class="com.sh.action.MyUpAction">
  12. <resultname="input">/up.jsp</result>
  13. <resultname="success">/success.jsp</result>
  14. <!--在web-root目录下新建的一个upload目录用于保存上传的文件-->
  15. <paramname="savePath">/upload</param>
  16. <interceptor-refname="fileUpload">
  17. <!--采用设置文件的类型来限制上传文件的类型-->
  18. <paramname="allowedTypes">text/plain</param>
  19. <!--采用设置文件的后缀来限制上传文件的类型-->
  20. <paramname="allowedExtensions">png,txt</param>
  21. <!--设置文件的大小默认为2M[单位:byte]-->
  22. <paramname="maximumSize">1024000</param>
  23. </interceptor-ref>
  24. <interceptor-refname="defaultStack"/>
  25. </action>
  26. </package>
  27. </struts>
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
	"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
	"http://struts.apache.org/dtds/struts-2.3.dtd">

<struts> 
    <constant name="struts.i18n.encoding" value="utf-8"/>
    <constant name="struts.devMode" value="true"/>  
    <constant name="struts.convention.classes.reload" value="true" /> 
    
    <constant name="struts.multipart.saveDir" value="f:/tmp"/>
    <package name="/user" extends="struts-default">
    	<action name="up" class="com.sh.action.MyUpAction">
    		<result name="input">/up.jsp</result>
			<result name="success">/success.jsp</result>
			<!-- 在web-root目录下新建的一个 upload目录 用于保存上传的文件 -->
			<param name="savePath">/upload</param>
			<interceptor-ref name="fileUpload">
				<!--采用设置文件的类型 来限制上传文件的类型-->
				<param name="allowedTypes">text/plain</param>
				<!--采用设置文件的后缀来限制上传文件的类型 -->
				<param name="allowedExtensions">png,txt</param>
				<!--设置文件的大小 默认为 2M [单位:byte] -->
				<param name="maximumSize">1024000</param>
			</interceptor-ref>			
			    	
			<interceptor-ref name="defaultStack"/>
    	</action>
    </package>
</struts>


up.jsp

Html代码 复制代码收藏代码
  1. <body>
  2. <h2>Struts2上传文件</h2>
  3. <s:fielderror/>
  4. <s:formaction="up"method="post"name="upform"id="form1"enctype="multipart/form-data"theme="simple">
  5. 选择文件:
  6. <s:filename="upload"cssStyle="width:300px;"/>
  7. <s:submitvalue="确定"/>
  8. </s:form>
  9. </body>
  <body>
    <h2>Struts2 上传文件</h2>
     <s:fielderror/>
    <s:form action="up" method="post" name="upform" id="form1" enctype="multipart/form-data" theme="simple">
          选择文件:
         <s:file name="upload" cssStyle="width:300px;"/>
         <s:submit value="确定"/>
    </s:form>      
  </body>


success.jsp

Html代码 复制代码收藏代码
  1. <body>
  2. <b>上传成功!</b>
  3. <s:propertyvalue="uploadFileName"/><br/>
  4. [img]<s:propertyvalue="'upload/'+uploadFileName"/>[/img]
  5. </body>
  <body>
    <b>上传成功!</b>
    <s:property value="uploadFileName"/><br/>
    [img]<s:property value="'upload/'+uploadFileName"/>[/img]
  </body>



案例:使用FileUtil上传

action.java

Java代码 复制代码收藏代码
  1. packagecom.sh.action;
  2. importjava.io.File;
  3. importjava.io.IOException;
  4. importjava.text.DateFormat;
  5. importjava.text.SimpleDateFormat;
  6. importjava.util.Date;
  7. importjava.util.Random;
  8. importjava.util.UUID;
  9. importorg.apache.commons.io.FileUtils;
  10. importorg.apache.struts2.ServletActionContext;
  11. importcom.opensymphony.xwork2.ActionContext;
  12. importcom.opensymphony.xwork2.ActionSupport;
  13. publicclassFileUtilUploadextendsActionSupport{
  14. privateFileimage;//文件
  15. privateStringimageFileName;//文件名
  16. privateStringimageContentType;//文件类型
  17. publicStringexecute(){
  18. try{
  19. if(image!=null){
  20. //文件保存的父目录
  21. StringrealPath=ServletActionContext.getServletContext()
  22. .getRealPath("/image");
  23. //要保存的新的文件名称
  24. StringtargetFileName=generateFileName(imageFileName);
  25. //利用父子目录穿件文件目录
  26. Filesavefile=newFile(newFile(realPath),targetFileName);
  27. if(!savefile.getParentFile().exists()){
  28. savefile.getParentFile().mkdirs();
  29. }
  30. FileUtils.copyFile(image,savefile);
  31. ActionContext.getContext().put("message","上传成功!");
  32. ActionContext.getContext().put("filePath",targetFileName);
  33. }
  34. }catch(IOExceptione){
  35. //TODOAuto-generatedcatchblock
  36. e.printStackTrace();
  37. }
  38. return"success";
  39. }
  40. /**
  41. *new文件名=时间+随机数
  42. *@paramfileName:old文件名
  43. *@returnnew文件名
  44. */
  45. privateStringgenerateFileName(StringfileName){
  46. //时间
  47. DateFormatdf=newSimpleDateFormat("yyMMddHHmmss");
  48. StringformatDate=df.format(newDate());
  49. //随机数
  50. intrandom=newRandom().nextInt(10000);
  51. //文件后缀
  52. intposition=fileName.lastIndexOf(".");
  53. Stringextension=fileName.substring(position);
  54. returnformatDate+random+extension;
  55. }
  56. //getset
  57. }
package com.sh.action;

import java.io.File;
import java.io.IOException;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Random;
import java.util.UUID;

import org.apache.commons.io.FileUtils;
import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;

public class FileUtilUpload extends ActionSupport {
	private File image; //文件
	private String imageFileName; //文件名
	private String imageContentType;//文件类型
	public String execute(){
		try {
			if(image!=null){
				//文件保存的父目录
				String realPath=ServletActionContext.getServletContext()
				.getRealPath("/image");
				//要保存的新的文件名称
				String targetFileName=generateFileName(imageFileName);
				//利用父子目录穿件文件目录
				File savefile=new File(new File(realPath),targetFileName);
				if(!savefile.getParentFile().exists()){
					savefile.getParentFile().mkdirs();
				}
				FileUtils.copyFile(image, savefile);
				ActionContext.getContext().put("message", "上传成功!");
				ActionContext.getContext().put("filePath", targetFileName);
			}
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return "success";
	}
	
	/**
	 * new文件名= 时间 + 随机数
	 * @param fileName: old文件名
	 * @return new文件名
	 */
	private String generateFileName(String fileName) {
		//时间
        DateFormat df = new SimpleDateFormat("yyMMddHHmmss");   
        String formatDate = df.format(new Date());
        //随机数
        int random = new Random().nextInt(10000); 
        //文件后缀
        int position = fileName.lastIndexOf(".");   
        String extension = fileName.substring(position);   
        return formatDate + random + extension;   
    }
//get set

}


struts.xml

Xml代码 复制代码收藏代码
  1. <actionname="fileUtilUpload"class="com.sh.action.FileUtilUpload">
  2. <resultname="input">/fileutilupload.jsp</result>
  3. <resultname="success">/fuuSuccess.jsp</result>
  4. </action>
	
    	<action name="fileUtilUpload" class="com.sh.action.FileUtilUpload">
    		<result name="input">/fileutilupload.jsp</result>
    		<result name="success">/fuuSuccess.jsp</result>
    	</action>


fileutilupload.jsp

Html代码 复制代码收藏代码
  1. <formaction="${pageContext.request.contextPath}/fileUtilUpload.action"
  2. enctype="multipart/form-data"method="post">
  3. 文件:<inputtype="file"name="image"/>
  4. <inputtype="submit"value="上传"/>
  5. </form>
 <form action="${pageContext.request.contextPath }/fileUtilUpload.action" 
    enctype="multipart/form-data" method="post">
    	文件:<input type="file" name="image"/>
    	<input type="submit" value="上传"/>
    </form>



fuuSuccess.jsp

Html代码 复制代码收藏代码
  1. body>
  2. <b>${message}</b>
  3. ${imageFileName}<br/>
  4. <imgsrc="upload/${filePath}"/>
  5. </body>
body>
    <b>${message}</b>
   		${imageFileName}<br/>
    <img src="upload/${filePath}"/>
  </body>



案例:使用IOUtil上传

action.java

Java代码 复制代码收藏代码
  1. packagecom.sh.action;
  2. importjava.io.File;
  3. importjava.io.FileInputStream;
  4. importjava.io.FileOutputStream;
  5. importjava.text.DateFormat;
  6. importjava.text.SimpleDateFormat;
  7. importjava.util.Date;
  8. importjava.util.UUID;
  9. importorg.apache.commons.io.IOUtils;
  10. importorg.apache.struts2.ServletActionContext;
  11. importcom.opensymphony.xwork2.ActionContext;
  12. importcom.opensymphony.xwork2.ActionSupport;
  13. publicclassIOUtilUploadextendsActionSupport{
  14. privateFileimage;//文件
  15. privateStringimageFileName;//文件名
  16. privateStringimageContentType;//文件类型
  17. publicStringexecute(){
  18. try{
  19. if(image!=null){
  20. //文件保存的父目录
  21. StringrealPath=ServletActionContext.getServletContext()
  22. .getRealPath("/image");
  23. //要保存的新的文件名称
  24. StringtargetFileName=generateFileName(imageFileName);
  25. //利用父子目录穿件文件目录
  26. Filesavefile=newFile(newFile(realPath),targetFileName);
  27. if(!savefile.getParentFile().exists()){
  28. savefile.getParentFile().mkdirs();
  29. }
  30. FileOutputStreamfos=newFileOutputStream(savefile);
  31. FileInputStreamfis=newFileInputStream(image);
  32. //如果复制文件的时候出错了返回值就是-1所以初始化为-2
  33. Longresult=-2L;//大文件的上传
  34. intsmresult=-2;//小文件的上传
  35. //如果文件大于2GB
  36. if(image.length()>1024*2*1024){
  37. result=IOUtils.copyLarge(fis,fos);
  38. }else{
  39. smresult=IOUtils.copy(fis,fos);
  40. }
  41. if(result>-1||smresult>-1){
  42. ActionContext.getContext().put("message","上传成功!");
  43. }
  44. ActionContext.getContext().put("filePath",targetFileName);
  45. }
  46. }catch(Exceptione){
  47. e.printStackTrace();
  48. }
  49. returnSUCCESS;
  50. }
  51. /**
  52. *new文件名=时间+全球唯一编号
  53. *@paramfileNameold文件名
  54. *@returnnew文件名
  55. */
  56. privateStringgenerateFileName(StringfileName){
  57. //时间
  58. DateFormatdf=newSimpleDateFormat("yy_MM_dd_HH_mm_ss");
  59. StringformatDate=df.format(newDate());
  60. //全球唯一编号
  61. Stringuuid=UUID.randomUUID().toString();
  62. intposition=fileName.lastIndexOf(".");
  63. Stringextension=fileName.substring(position);
  64. returnformatDate+uuid+extension;
  65. }
  66. //getset
  67. }
package com.sh.action;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.UUID;

import org.apache.commons.io.IOUtils;
import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;

public class IOUtilUpload extends ActionSupport {

	private File image; //文件
	private String imageFileName; //文件名
	private String imageContentType;//文件类型
	public String execute(){
		try {  
           if(image!=null){
				//文件保存的父目录
				String realPath=ServletActionContext.getServletContext()
				.getRealPath("/image");
				//要保存的新的文件名称
				String targetFileName=generateFileName(imageFileName);
				//利用父子目录穿件文件目录
				File savefile=new File(new File(realPath),targetFileName);
				if(!savefile.getParentFile().exists()){
					savefile.getParentFile().mkdirs();
				}
				FileOutputStream fos=new FileOutputStream(savefile);
				FileInputStream fis=new FileInputStream(image);
				
				//如果复制文件的时候 出错了返回 值就是 -1 所以 初始化为 -2
				Long result=-2L;   //大文件的上传
				int  smresult=-2; //小文件的上传
				
				//如果文件大于 2GB
				if(image.length()>1024*2*1024){
					result=IOUtils.copyLarge(fis, fos);
				}else{
					smresult=IOUtils.copy(fis, fos); 
				}
	            if(result >-1 || smresult>-1){
	            	ActionContext.getContext().put("message", "上传成功!");
	            }
	            ActionContext.getContext().put("filePath", targetFileName);
           }
        } catch (Exception e) {  
            e.printStackTrace();  
        }  
        return SUCCESS;  
	}
	
	/**
	 * new文件名= 时间 + 全球唯一编号
	 * @param fileName old文件名
	 * @return new文件名
	 */
	private String generateFileName(String fileName) {
		//时间
        DateFormat df = new SimpleDateFormat("yy_MM_dd_HH_mm_ss");   
        String formatDate = df.format(new Date());
        //全球唯一编号
        String uuid=UUID.randomUUID().toString();
        int position = fileName.lastIndexOf(".");   
        String extension = fileName.substring(position);   
        return formatDate + uuid + extension;   
    }
//get set
}



struts.xml

Xml代码 复制代码收藏代码
  1. <actionname="iOUtilUpload"class="com.sh.action.IOUtilUpload">
  2. <resultname="input">/ioutilupload.jsp</result>
  3. <resultname="success">/iuuSuccess.jsp</result>
  4. </action>
<action name="iOUtilUpload" class="com.sh.action.IOUtilUpload">
    		<result name="input">/ioutilupload.jsp</result>
    		<result name="success">/iuuSuccess.jsp</result>
    	</action>


ioutilupload.jsp

Html代码 复制代码收藏代码
  1. <formaction="${pageContext.request.contextPath}/iOUtilUpload.action"
  2. enctype="multipart/form-data"method="post">
  3. 文件:<inputtype="file"name="image"/>
  4. <inputtype="submit"value="上传"/>
  5. </form>
<form action="${pageContext.request.contextPath }/iOUtilUpload.action" 
    enctype="multipart/form-data" method="post">
    	文件:<input type="file" name="image"/>
    	<input type="submit" value="上传"/>
    </form>


iuuSuccess.jsp

Html代码 复制代码收藏代码
  1. <body>
  2. <b>${message}</b>
  3. ${imageFileName}<br/>
  4. <imgsrc="image/${filePath}"/>
  5. </body>
<body>
    <b>${message}</b>
   		${imageFileName}<br/>
    <img src="image/${filePath}"/>
  </body>



案例:删除服务器上的文件

Java代码 复制代码收藏代码
  1. /**
  2. *从服务器上删除文件
  3. *@paramfileName文件名
  4. *@returntrue:从服务器上删除成功false:否则失败
  5. */
  6. publicbooleandelFile(StringfileName){
  7. Filefile=newFile(fileName);
  8. if(file.exists()){
  9. returnfile.delete();
  10. }
  11. returnfalse;
  12. }
/**
	 * 从服务器上 删除文件
	 * @param fileName 文件名
	 * @return true: 从服务器上删除成功   false:否则失败
	 */
	public boolean delFile(String fileName){
		File file=new File(fileName);
		if(file.exists()){
			return file.delete();
		}
		return false;
	}



案例:使用数组上传多个文件
action.java

Java代码 复制代码收藏代码
  1. packagecom.sh.action;
  2. importjava.io.File;
  3. importjava.io.FileInputStream;
  4. importjava.io.FileOutputStream;
  5. importjava.util.Random;
  6. importorg.apache.struts2.ServletActionContext;
  7. importcom.opensymphony.xwork2.ActionContext;
  8. importcom.opensymphony.xwork2.ActionSupport;
  9. /**
  10. *@authorAdministrator
  11. *
  12. */
  13. publicclassArrayUploadextendsActionSupport{
  14. privateFile[]image;
  15. privateString[]imageContentType;
  16. privateString[]imageFileName;
  17. privateStringpath;
  18. publicStringgetPath(){
  19. returnServletActionContext.getRequest().getRealPath(path);
  20. }
  21. publicvoidsetPath(Stringpath){
  22. this.path=path;
  23. }
  24. @Override
  25. publicStringexecute()throwsException{
  26. for(inti=0;i<image.length;i++){
  27. imageFileName[i]=getFileName(imageFileName[i]);
  28. StringtargetFileName=getPath()+"\\"+imageFileName[i];
  29. FileOutputStreamfos=newFileOutputStream(targetFileName);
  30. FileInputStreamfis=newFileInputStream(image[i]);
  31. byte[]b=newbyte[1024];
  32. intlen=0;
  33. while((len=fis.read(b))>0){
  34. fos.write(b,0,len);
  35. }
  36. }
  37. returnSUCCESS;
  38. }
  39. privateStringgetFileName(StringfileName){
  40. intposition=fileName.lastIndexOf(".");
  41. Stringextension=fileName.substring(position);
  42. intradom=newRandom().nextInt(1000);
  43. return""+System.currentTimeMillis()+radom+extension;
  44. }
  45. //getset
  46. }
package com.sh.action;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.Random;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;

/**
 * @author Administrator
 *
 */
public class ArrayUpload extends ActionSupport {

	private File[] image;
	private String[] imageContentType;
	private String[] imageFileName;
	private String path;
	
	public String getPath() {
		return ServletActionContext.getRequest().getRealPath(path);
	}

	public void setPath(String path) {
		this.path = path;
	}

	@Override
	public String execute() throws Exception {
	  for(int i=0;i<image.length;i++){
		  imageFileName[i]=getFileName(imageFileName[i]);
		  String targetFileName=getPath()+"\\"+imageFileName[i];
		  FileOutputStream fos=new FileOutputStream(targetFileName);
		  FileInputStream fis=new FileInputStream(image[i]);
		  byte[] b=new byte[1024];
		  int len=0;
		  while ((len=fis.read(b))>0) {
			fos.write(b, 0, len);
		}
	  }
	  return SUCCESS;
	}
	private String getFileName(String fileName){
		int position=fileName.lastIndexOf(".");
		String extension=fileName.substring(position);
		int radom=new Random().nextInt(1000);
		return ""+System.currentTimeMillis()+radom+extension;
	}
//get set
}



struts.xml

Xml代码 复制代码收藏代码
  1. <actionname="arrayUpload"class="com.sh.action.ArrayUpload">
  2. <interceptor-refname="fileUpload">
  3. <paramname="allowedTypes">
  4. image/x-png,image/gif,image/bmp,image/jpeg
  5. </param>
  6. <paramname="maximumSize">10240000</param>
  7. </interceptor-ref>
  8. <interceptor-refname="defaultStack"/>
  9. <paramname="path">/image</param>
  10. <resultname="success">/arraySuccess.jsp</result>
  11. <resultname="input">/arrayupload.jsp</result>
  12. </action>
	<action name="arrayUpload" class="com.sh.action.ArrayUpload">
    		<interceptor-ref name="fileUpload">
    			<param name="allowedTypes">
    				image/x-png,image/gif,image/bmp,image/jpeg
    			</param>
    			<param name="maximumSize">10240000</param>
    		</interceptor-ref>
    		<interceptor-ref name="defaultStack"/>
    		<param name="path">/image</param>
    		<result name="success">/arraySuccess.jsp</result>
    		<result name="input">/arrayupload.jsp</result>
    	</action>



arrayUpload.jsp

Html代码 复制代码收藏代码
  1. <body>
  2. ===========多文件上传=================
  3. <formaction="${pageContext.request.contextPath}/arrayUpload.action"
  4. enctype="multipart/form-data"method="post">
  5. 文件1:<inputtype="file"name="image"/><br/>
  6. 文件2:<inputtype="file"name="image"/><br/>
  7. 文件3:<inputtype="file"name="image"/>
  8. <inputtype="submit"value="上传"/>
  9. </form>
  10. </body>
 <body>
    ===========多文件上传=================
     <form action="${pageContext.request.contextPath }/arrayUpload.action" 
    enctype="multipart/form-data" method="post">
    	文件1:<input type="file" name="image"/><br/>
    	文件2:<input type="file" name="image"/><br/>
    	文件3:<input type="file" name="image"/>
    	<input type="submit" value="上传"/>
    </form>
  </body>


arraySuccess.jsp

Html代码 复制代码收藏代码
  1. <body>
  2. <b>使用数组上传成功s:iterator</b>
  3. <s:iteratorvalue="imageFileName"status="st">
  4. <s:propertyvalue="#st.getIndex()+1"/>个图片:<br/>
  5. [img]image/<s:propertyvalue="imageFileName[#st.getIndex()][/img]"/>
  6. </s:iterator>
  7. <br/><b>使用数组上传成功c:foreach</b>
  8. <c:forEachvar="fn"items="${imageFileName}"varStatus="st">
  9. 第${st.index+1}个图片:<br/>
  10. <imgsrc="image/${fn}"/>
  11. </c:forEach>
  12. </body>
<body>
    <b>使用数组上传成功s:iterator</b>
    <s:iterator value="imageFileName" status="st">
    	第<s:property value="#st.getIndex()+1"/>个图片:<br/>
    	[img]image/<s:property value="imageFileName[#st.getIndex()][/img]"/>
    </s:iterator>
     <br/><b>使用数组上传成功c:foreach</b>
     <c:forEach var="fn" items="${imageFileName}" varStatus="st">
     	第${st.index+1}个图片:<br/>
     	<img src="image/${fn}"/>
     </c:forEach>
  </body>



案例:使用List上传多个文件
action.java

Java代码 复制代码收藏代码
  1. packagecom.sh.action;
  2. importjava.io.File;
  3. importjava.io.FileInputStream;
  4. importjava.io.FileOutputStream;
  5. importjava.util.List;
  6. importjava.util.Random;
  7. importjavax.servlet.Servlet;
  8. importorg.apache.struts2.ServletActionContext;
  9. importcom.opensymphony.xwork2.ActionSupport;
  10. publicclassListUploadextendsActionSupport{
  11. privateList<File>doc;
  12. privateList<String>docContentType;
  13. privateList<String>docFileName;
  14. privateStringpath;
  15. @Override
  16. publicStringexecute()throwsException{
  17. for(inti=0;i<doc.size();i++){
  18. docFileName.set(i,getFileName(docFileName.get(i)));
  19. FileOutputStreamfos=newFileOutputStream(getPath()+"\\"+docFileName.get(i));
  20. Filefile=doc.get(i);
  21. FileInputStreamfis=newFileInputStream(file);
  22. byte[]b=newbyte[1024];
  23. intlength=0;
  24. while((length=fis.read(b))>0){
  25. fos.write(b,0,length);
  26. }
  27. }
  28. returnSUCCESS;
  29. }
  30. publicStringgetFileName(StringfileName){
  31. intposition=fileName.lastIndexOf(".");
  32. Stringextension=fileName.substring(position);
  33. intradom=newRandom().nextInt(1000);
  34. return""+System.currentTimeMillis()+radom+extension;
  35. }
  36. publicStringgetPath(){
  37. returnServletActionContext.getRequest().getRealPath(path);
  38. }
package com.sh.action;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.List;
import java.util.Random;

import javax.servlet.Servlet;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

public class ListUpload extends ActionSupport {
private List<File> doc;
private List<String> docContentType;
private List<String> docFileName;
private String path;
@Override
public String execute() throws Exception {
	for(int i=0;i<doc.size();i++){
		docFileName.set(i, getFileName(docFileName.get(i)));
		FileOutputStream fos=new FileOutputStream(getPath()+"\\"+docFileName.get(i));
		File file=doc.get(i);
		FileInputStream fis=new FileInputStream(file);
		byte [] b=new byte[1024];
		int length=0;
		while((length=fis.read(b))>0){
			fos.write(b,0,length);
		}
	}
	return SUCCESS;
}


public String getFileName(String fileName){
	int position=fileName.lastIndexOf(".");
	String extension=fileName.substring(position);
	int radom=new Random().nextInt(1000);
	return ""+System.currentTimeMillis()+radom+extension;
}
public String getPath() {
	return ServletActionContext.getRequest().getRealPath(path);
}


strust.xml

Xml代码 复制代码收藏代码
  1. <actionname="listUpload"class="com.sh.action.ListUpload">
  2. <interceptor-refname="fileUpload">
  3. <paramname="allowedTypes">
  4. image/x-png,image/gif,image/bmp,image/jpeg
  5. </param>
  6. <paramname="maximumSize">
  7. 10240000
  8. </param>
  9. </interceptor-ref>
  10. <interceptor-refname="defaultStack"/>
  11. <paramname="path">/image</param>
  12. <resultname="success">/listSuccess.jsp</result>
  13. <resultname="input">/listupload.jsp</result>
  14. </action>
<action name="listUpload" class="com.sh.action.ListUpload">
    		<interceptor-ref name="fileUpload">
    			<param name="allowedTypes">
    				image/x-png,image/gif,image/bmp,image/jpeg
    			</param>
    			<param name="maximumSize">
    				10240000
    			</param>
    		</interceptor-ref>
    		<interceptor-ref name="defaultStack"/>
    		<param name="path">/image</param>
    		<result name="success">/listSuccess.jsp</result>
    		<result name="input">/listupload.jsp</result>
    	</action>



listUpload.jsp

Html代码 复制代码收藏代码
  1. <body>
  2. ===========List多文件上传=================
  3. <formaction="${pageContext.request.contextPath}/listUpload.action"
  4. enctype="multipart/form-data"method="post">
  5. 文件1:<inputtype="file"name="doc"/><br/>
  6. 文件2:<inputtype="file"name="doc"/><br/>
  7. 文件3:<inputtype="file"name="doc"/>
  8. <inputtype="submit"value="上传"/>
  9. </form>
  10. <s:fielderror/>
  11. <s:formaction="listUpload"enctype="multipart/form-data">
  12. <s:filename="doc"label="选择上传的文件"/>
  13. <s:filename="doc"label="选择上传的文件"/>
  14. <s:filename="doc"label="选择上传的文件"/>
  15. <s:submitvalue="上传"/>
  16. </s:form>
  17. </body>
<body>
    ===========List 多文件上传=================
     <form action="${pageContext.request.contextPath }/listUpload.action" 
    enctype="multipart/form-data" method="post">
    	文件1:<input type="file" name="doc"/><br/>
    	文件2:<input type="file" name="doc"/><br/>
    	文件3:<input type="file" name="doc"/>
    	<input type="submit" value="上传"/>
    </form>
   
     <s:fielderror/>
    <s:form action="listUpload" enctype="multipart/form-data">
	<s:file name="doc" label="选择上传的文件"/>
    	<s:file name="doc" label="选择上传的文件"/>
    	<s:file name="doc" label="选择上传的文件"/>
    	<s:submit value="上传"/>
    </s:form>
     
  </body>



listSuccess.jsp

Html代码 复制代码收藏代码
  1. <body>
  2. <h3>使用List上传多个文件s:iterator显示</h3>
  3. <s:iteratorvalue="docFileName"status="st">
  4. <s:propertyvalue="#st.getIndex()+1"/>个图片:
  5. <br/>
  6. <imgsrc="image/<s:propertyvalue="docFileName.get(#st.getIndex())"/>"/><br/>
  7. </s:iterator>
  8. <h3>使用List上传多个文件c:foreach显示</h3>
  9. <c:forEachvar="fn"items="${docFileName}"varStatus="st">
  10. 第${st.index}个图片<br/>
  11. <imgsrc="image/${fn}"/>
  12. </c:forEach>
  13. </body>
  <body>
   	<h3>使用List上传多个文件 s:iterator显示</h3>
   	<s:iterator value="docFileName" status="st">
   		第<s:property value="#st.getIndex()+1"/>个图片:
   		<br/>
   		<img src="image/<s:property value="docFileName.get(#st.getIndex())"/>"/><br/>
   	</s:iterator>
   	<h3>使用List上传多个文件 c:foreach显示</h3>
  	<c:forEach var="fn" items="${docFileName}" varStatus="st">
  		  第${st.index}个图片<br/>
  		 <img src="image/${fn}"/>
  	</c:forEach>
  </body>



案例:Struts2 文件下载

Java代码 复制代码收藏代码
  1. Struts2支持文件下载,通过提供的stram结果类型来实现。指定stream结果类型是,还需要指定inputName参数,此参数表示输入流,作为文件下载入口。
Struts2支持文件下载,通过提供的stram结果类型来实现。指定stream结果类型是,还需要指定inputName参数,此参数表示输入流,作为文件下载入口。


简单文件下载 不含中文附件名

Java代码 复制代码收藏代码
  1. packagecom.sh.action;
  2. importjava.io.InputStream;
  3. importorg.apache.struts2.ServletActionContext;
  4. importcom.opensymphony.xwork2.ActionSupport;
  5. publicclassMyDownloadextendsActionSupport{
  6. privateStringinputPath;
  7. //注意这的方法名在struts.xml中要使用到的
  8. publicInputStreamgetTargetFile(){
  9. System.out.println(inputPath);
  10. returnServletActionContext.getServletContext().getResourceAsStream(inputPath);
  11. }
  12. publicvoidsetInputPath(StringinputPath){
  13. this.inputPath=inputPath;
  14. }
  15. @Override
  16. publicStringexecute()throwsException{
  17. //TODOAuto-generatedmethodstub
  18. returnSUCCESS;
  19. }
  20. }
package com.sh.action;

import java.io.InputStream;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

public class MyDownload extends ActionSupport {

	private String inputPath;

	//注意这的  方法名 在struts.xml中要使用到的
	public InputStream getTargetFile() {
		System.out.println(inputPath);
		return ServletActionContext.getServletContext().getResourceAsStream(inputPath);
	}
	
	public void setInputPath(String inputPath) {
		this.inputPath = inputPath;
	}

	@Override
	public String execute() throws Exception {
		// TODO Auto-generated method stub
		return SUCCESS;
	}
	
	
}


Struts.xml

Xml代码 复制代码收藏代码
  1. <actionname="mydownload"class="com.sh.action.MyDownload">
  2. <!--给action中的属性赋初始值-->
  3. <paramname="inputPath">/image/1347372060765110.jpg</param>
  4. <!--给注意放回后的type类型-->
  5. <resultname="success"type="stream">
  6. <!--要下载文件的类型-->
  7. <paramname="contentType">image/jpeg</param>
  8. <!--action文件输入流的方法getTargetFile()-->
  9. <paramname="inputName">targetFile</param>
  10. <!--文件下载的处理方式包括内联(inline)和附件(attachment)两种方式--->
  11. <paramname="contentDisposition">attachment;filename="1347372060765110.jpg"</param>
  12. <!---下载缓冲区的大小-->
  13. <paramname="bufferSize">2048</param>
  14. </result>
  15. </action>
	<action name="mydownload" class="com.sh.action.MyDownload">
             <!--给action中的属性赋初始值-->
    		<param name="inputPath">/image/1347372060765110.jpg</param>
 <!--给注意放回后的 type类型-->
    		<result name="success" type="stream">
                       <!--要下载文件的类型-->
    			<param name="contentType">image/jpeg</param>
                         <!--action文件输入流的方法 getTargetFile()-->
    			<param name="inputName">targetFile</param>
                         <!--文件下载的处理方式 包括内联(inline)和附件(attachment)两种方式--->
    			<param name="contentDisposition">attachment;filename="1347372060765110.jpg"</param>
                        <!---下载缓冲区的大小-->
    			<param name="bufferSize">2048</param>
    		</result>
    	</action>



down.jsp

Html代码 复制代码收藏代码
  1. <body>
  2. <h3>Struts2的文件下载</h3><br>
  3. <ahref="mydownload.action">我要下载</a>
  4. </body>
  <body>
  		<h3>Struts 2 的文件下载</h3> <br>
  		<a href="mydownload.action">我要下载</a>
  </body>


在ie下 可以看到会打开一个 文件下载对话框 有 打开 保存 取消 按钮
google中 没有了

文件下载,支持中文附件名
action

Java代码 复制代码收藏代码
  1. packagecom.sh.action;
  2. importjava.io.InputStream;
  3. importorg.apache.struts2.ServletActionContext;
  4. importcom.opensymphony.xwork2.ActionSupport;
  5. publicclassDownLoadActionextendsActionSupport{
  6. privatefinalStringDOWNLOADPATH="/image/";
  7. privateStringfileName;
  8. //这个方法也得注意struts.xml中也会用到
  9. publicInputStreamgetDownLoadFile(){
  10. returnServletActionContext.getServletContext().getResourceAsStream(DOWNLOADPATH+fileName);
  11. }
  12. //转换文件名的方法在strust.xml中会用到
  13. publicStringgetDownLoadChineseFileName(){
  14. StringchineseFileName=fileName;
  15. try{
  16. chineseFileName=newString(chineseFileName.getBytes(),"ISO-8859-1");
  17. }catch(Exceptione){
  18. e.printStackTrace();
  19. }
  20. returnchineseFileName;
  21. }
  22. @Override
  23. publicStringexecute()throwsException{
  24. //TODOAuto-generatedmethodstub
  25. returnSUCCESS;
  26. }
  27. publicStringgetFileName(){
  28. returnfileName;
  29. }
  30. publicvoidsetFileName(StringfileName){
  31. this.fileName=fileName;
  32. }
  33. }
package com.sh.action;

import java.io.InputStream;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

public class DownLoadAction extends ActionSupport {

	private final String DOWNLOADPATH="/image/";
	private String fileName;
      
        //这个方法 也得注意 struts.xml中也会用到
	public InputStream getDownLoadFile(){
		return ServletActionContext.getServletContext().getResourceAsStream(DOWNLOADPATH+fileName);
	}
	//转换文件名的方法 在strust.xml中会用到
	public String getDownLoadChineseFileName(){
		String chineseFileName=fileName;
		try {
			chineseFileName=new String(chineseFileName.getBytes(),"ISO-8859-1");
		} catch (Exception e) {
			e.printStackTrace();
		}
		return chineseFileName;
	}
	@Override
	public String execute() throws Exception {
		// TODO Auto-generated method stub
		return SUCCESS;
	}

	public String getFileName() {
		return fileName;
	}

	public void setFileName(String fileName) {
		this.fileName = fileName;
	}
	
}


struts.xml

Xml代码 复制代码收藏代码
  1. <actionname="download"class="com.sh.action.DownLoadAction">
  2. <paramname="fileName">活动主题.jpg</param>
  3. <resultname="success"type="stream">
  4. <paramname="contentType">image/jpeg</param>
  5. <!--getDownLoadFile()这个方法--->
  6. <paramname="inputName">downLoadFile</param>
  7. <paramname="contentDisposition">attachment;filename="${downLoadChineseFileName}"</param>
  8. <paramname="bufferSize">2048</param>
  9. </result>
  10. </action>
<action name="download" class="com.sh.action.DownLoadAction">
    		<param name="fileName">活动主题.jpg</param>
    		<result name="success" type="stream">
    			<param name="contentType">image/jpeg</param>
                        <!-- getDownLoadFile() 这个方法--->
    			<param name="inputName">downLoadFile</param>
    			<param name="contentDisposition">attachment;filename="${downLoadChineseFileName}"</param>
    			<param name="bufferSize">2048</param>
    		</result>
    	</action>


down1.jsp

Html代码 复制代码收藏代码
  1. <body>
  2. <h3>Struts2的文件下载</h3><br>
  3. <ahref="download.action">我要下载</a>
  4. </body>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics