现在的位置: 首页 > 综合 > 正文

Struts2 文件上传,下载,删除

2013年09月14日 ⁄ 综合 ⁄ 共 18997字 ⁄ 字号 评论关闭

本文介绍了:
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.     <form action="showFile.jsp" name="myForm" method="post" enctype="multipart/form-data">  
  3.         选择上传的文件   
  4.         <input type="file" name="myfile"><br/><br/>  
  5.         <input type="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.      InputStream is=request.getInputStream();   
  5.      InputStreamReader isr=new InputStreamReader(is);   
  6.      BufferedReader br=new BufferedReader(isr);   
  7.      String content=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.   
  3. 需要使用fileUpload拦截器:具体的说明在 struts2-core-2.3.4.jar \org.apache.struts2.interceptor\FileUploadInterceptor.class 里面    
  4. 下面来看看一点源代码  
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. public class FileUploadInterceptor extends AbstractInterceptor {   
  2.   
  3.     private static final long serialVersionUID = -4764627478894962478L;   
  4.   
  5.     protected static final Logger LOG = LoggerFactory.getLogger(FileUploadInterceptor.class);   
  6.     private static final String DEFAULT_MESSAGE = "no.message.found";   
  7.   
  8.     protected boolean useActionMessageBundle;   
  9.   
  10.     protected Long maximumSize;   
  11.     protected Set<String> allowedTypesSet = Collections.emptySet();   
  12.     protected Set<String> allowedExtensionsSet = Collections.emptySet();   
  13.   
  14.     private PatternMatcher matcher;   
  15.   
  16.  @Inject  
  17.     public void setMatcher(PatternMatcher matcher) {   
  18.         this.matcher = matcher;   
  19.     }   
  20.   
  21.     public void setUseActionMessageBundle(String value) {   
  22.         this.useActionMessageBundle = Boolean.valueOf(value);   
  23.     }   
  24.   
  25.     //这就是struts.xml 中param为什么要配置为 allowedExtensions   
  26.     public void setAllowedExtensions(String allowedExtensions) {   
  27.         allowedExtensionsSet = TextParseUtil.commaDelimitedStringToSet(allowedExtensions);   
  28.     }   
  29.     //这就是struts.xml 中param为什么要配置为 allowedTypes 而不是 上面的allowedTypesSet    
  30.     public void setAllowedTypes(String allowedTypes) {   
  31.         allowedTypesSet = TextParseUtil.commaDelimitedStringToSet(allowedTypes);   
  32.     }   
  33.   
  34.     public void setMaximumSize(Long maximumSize) {   
  35.         this.maximumSize = maximumSize;   
  36.     }   
  37. }  
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) - the maximum size (in bytes) that the interceptor will allow a file reference to be set   
  3.  * on the action. Note, this is <b>not</b> related to the various properties found in struts.properties.   
  4.  * Default to approximately 2MB.</li>  
  5. 具体说的是这个值在struts.properties 中有设置。 下面就来看 里面的设置   
  6.   
  7. ### Parser to handle HTTP POST requests, encoded using the MIME-type multipart/form-data   
  8.   
  9. 文件上传解析器     
  10. struts.multipart.parser=cos  
  11. struts.multipart.parser=pell  
  12. #默认 使用jakata框架上传文件   
  13. struts.multipart.parser=jakarta  
  14.   
  15. #上传时候 默认的临时文件目录     
  16. # uses javax.servlet.context.tempdir by default   
  17. struts.multipart.saveDir=   
  18.   
  19. #上传时候默认的大小   
  20. 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. package com.sh.action;   
  2.   
  3. import java.io.File;   
  4. import java.io.FileInputStream;   
  5. import java.io.FileOutputStream;   
  6.   
  7. import org.apache.struts2.ServletActionContext;   
  8.   
  9. import com.opensymphony.xwork2.ActionSupport;   
  10.   
  11. public class MyUpAction extends ActionSupport {   
  12.        
  13.     private File upload; //上传的文件   
  14.     private String uploadContentType; //文件的类型   
  15.     private String uploadFileName; //文件名称   
  16.     private String savePath; //文件上传的路径   
  17.        
  18. //注意这里的保存路径   
  19.     public String getSavePath() {   
  20.         return ServletActionContext.getRequest().getRealPath(savePath);   
  21.     }   
  22.     public void setSavePath(String savePath) {   
  23.         this.savePath = savePath;   
  24.     }   
  25.     @Override  
  26.     public String execute() throws Exception {   
  27.         System.out.println("type:"+this.uploadContentType);   
  28.         String fileName=getSavePath()+"\\"+getUploadFileName();   
  29.         FileOutputStream fos=new FileOutputStream(fileName);   
  30.         FileInputStream fis=new FileInputStream(getUpload());   
  31.         byte[] b=new byte[1024];   
  32.         int len=0;   
  33.         while ((len=fis.read(b))>0) {   
  34.             fos.write(b,0,len);   
  35.         }   
  36.         fos.flush();   
  37.         fos.close();   
  38.         fis.close();   
  39.         return SUCCESS;   
  40.     }   
  41. //get set   
  42. }  
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. <?xml version="1.0" encoding="UTF-8" ?>  
  2. <!DOCTYPE struts PUBLIC   
  3.     "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"   
  4.     "http://struts.apache.org/dtds/struts-2.3.dtd">  
  5.   
  6. <struts>    
  7.     <constant name="struts.i18n.encoding" value="utf-8"/>  
  8.     <constant name="struts.devMode" value="true"/>     
  9.     <constant name="struts.convention.classes.reload" value="true" />    
  10.        
  11.     <constant name="struts.multipart.saveDir" value="f:/tmp"/>  
  12.     <package name="/user" extends="struts-default">  
  13.         <action name="up" class="com.sh.action.MyUpAction">  
  14.             <result name="input">/up.jsp</result>  
  15.             <result name="success">/success.jsp</result>  
  16.             <!-- 在web-root目录下新建的一个 upload目录 用于保存上传的文件 -->  
  17.             <param name="savePath">/upload</param>  
  18.             <interceptor-ref name="fileUpload">  
  19.                 <!--采用设置文件的类型 来限制上传文件的类型-->  
  20.                 <param name="allowedTypes">text/plain</param>  
  21.                 <!--采用设置文件的后缀来限制上传文件的类型 -->  
  22.                 <param name="allowedExtensions">png,txt</param>  
  23.                 <!--设置文件的大小 默认为 2M [单位:byte] -->  
  24.                 <param name="maximumSize">1024000</param>  
  25.             </interceptor-ref>               
  26.                        
  27.             <interceptor-ref name="defaultStack"/>  
  28.         </action>  
  29.     </package>  
  30. </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:form action="up" method="post" name="upform" id="form1" enctype="multipart/form-data" theme="simple">  
  5.         选择文件:   
  6.        <s:file name="upload" cssStyle="width:300px;"/>  
  7.        <s:submit value="确定"/>  
  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:property value="uploadFileName"/><br/>  
  4.   [img]<s:property value="'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. package com.sh.action;   
  2.   
  3. import java.io.File;   
  4. import java.io.IOException;   
  5. import java.text.DateFormat;   
  6. import java.text.SimpleDateFormat;   
  7. import java.util.Date;   
  8. import java.util.Random;   
  9. import java.util.UUID;   
  10.   
  11. import org.apache.commons.io.FileUtils;   
  12. import org.apache.struts2.ServletActionContext;   
  13.   
  14. import com.opensymphony.xwork2.ActionContext;   
  15. import com.opensymphony.xwork2.ActionSupport;   
  16.   
  17. public class FileUtilUpload extends ActionSupport {   
  18.     private File image; //文件   
  19.     private String imageFileName; //文件名   
  20.     private String imageContentType;//文件类型   
  21.     public String execute(){   
  22.         try {   
  23.             if(image!=null){   
  24.                 //文件保存的父目录   
  25.                 String realPath=ServletActionContext.getServletContext()   
  26.                 .getRealPath("/image");   
  27.                 //要保存的新的文件名称   
  28.                 String targetFileName=generateFileName(imageFileName);   
  29.                 //利用父子目录穿件文件目录   
  30.                 File savefile=new File(new File(realPath),targetFileName);   
  31.                 if(!savefile.getParentFile().exists()){   
  32.                     savefile.getParentFile().mkdirs();   
  33.                 }   
  34.                 FileUtils.copyFile(image, savefile);   
  35.                 ActionContext.getContext().put("message""上传成功!");   
  36.                 ActionContext.getContext().put("filePath", targetFileName);   
  37.             }   
  38.         } catch (IOException e) {   
  39.             // TODO Auto-generated catch block   
  40.             e.printStackTrace();   
  41.         }   
  42.         return "success";   
  43.     }   
  44.        
  45.     /**  
  46.      * new文件名= 时间 + 随机数  
  47.      * @param fileName: old文件名  
  48.      * @return new文件名  
  49.      */  
  50.     private String generateFileName(String fileName) {   
  51.         //时间   
  52.         DateFormat df = new SimpleDateFormat("yyMMddHHmmss");      
  53.         String formatDate = df.format(new Date());   
  54.         //随机数   
  55.         int random = new Random().nextInt(10000);    
  56.         //文件后缀   
  57.         int position = fileName.lastIndexOf(".");      
  58.         String extension = fileName.substring(position);      
  59.         return formatDate + random + extension;      
  60.     }   
  61. //get set   
  62.   
  63. }  
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. <action name="fileUtilUpload" class="com.sh.action.FileUtilUpload">  
  2.     <result name="input">/fileutilupload.jsp</result>  
  3.     <result name="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. <form action="${pageContext.request.contextPath }/fileUtilUpload.action"    
  2.    enctype="multipart/form-data" method="post">  
  3.     文件:<input type="file" name="image"/>  
  4.     <input type="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.     <img src="upload/${filePath}"/>  
  5.   </body>  
body>
    <b>${message}</b>
   		${imageFileName}<br/>
    <img src="upload/${filePath}"/>
  </body>

案例:使用IOUtil上传

action.java

Java代码 复制代码 收藏代码
  1. package com.sh.action;   
  2.   
  3. import java.io.File;   
  4. import java.io.FileInputStream;   
  5. import java.io.FileOutputStream;   
  6. import java.text.DateFormat;   
  7. import java.text.SimpleDateFormat;   
  8. import java.util.Date;   
  9. import java.util.UUID;   
  10.   
  11. import org.apache.commons.io.IOUtils;   
  12. import org.apache.struts2.ServletActionContext;   
  13.   
  14. import com.opensymphony.xwork2.ActionContext;   
  15. import com.opensymphony.xwork2.ActionSupport;   
  16.   
  17. public class IOUtilUpload extends ActionSupport {   
  18.   
  19.     private File image; //文件   
  20.     private String imageFileName; //文件名   
  21.     private String imageContentType;//文件类型   
  22.     public String execute(){   
  23.         try {     
  24.            if(image!=null){   
  25.                 //文件保存的父目录   
  26.                 String realPath=ServletActionContext.getServletContext()   
  27.                 .getRealPath("/image");   
  28.                 //要保存的新的文件名称   
  29.                 String targetFileName=generateFileName(imageFileName);   
  30.                 //利用父子目录穿件文件目录   
  31.                 File savefile=new File(new File(realPath),targetFileName);   
  32.                 if(!savefile.getParentFile().exists()){   
  33.                     savefile.getParentFile().mkdirs();   
  34.                 }   
  35.                 FileOutputStream fos=new FileOutputStream(savefile);   
  36.                 FileInputStream fis=new FileInputStream(image);   
  37.                    
  38.                 //如果复制文件的时候 出错了返回 值就是 -1 所以 初始化为 -2   
  39.                 Long result=-2L;   //大文件的上传   
  40.                 int  smresult=-2//小文件的上传   
  41.                    
  42.                 //如果文件大于 2GB   
  43.                 if(image.length()>1024*2*1024){   
  44.                     result=IOUtils.copyLarge(fis, fos);   
  45.                 }else{   
  46.                     smresult=IOUtils.copy(fis, fos);    
  47.                 }   
  48.                 if(result >-1 || smresult>-1){   
  49.                     ActionContext.getContext().put("message""上传成功!");   
  50.                 }   
  51.                 ActionContext.getContext().put("filePath", targetFileName);   
  52.            }   
  53.         } catch (Exception e) {     
  54.             e.printStackTrace();     
  55.         }     
  56.         return SUCCESS;     
  57.     }   
  58.        
  59.     /**  
  60.      * new文件名= 时间 + 全球唯一编号  
  61.      * @param fileName old文件名  
  62.      * @return new文件名  
  63.      */  
  64.     private String generateFileName(String fileName) {   
  65.         //时间   
  66.         DateFormat df = new SimpleDateFormat("yy_MM_dd_HH_mm_ss");      
  67.         String formatDate = df.format(new Date());   
  68.         //全球唯一编号   
  69.         String uuid=UUID.randomUUID().toString();   
  70.         int position = fileName.lastIndexOf(".");      
  71.         String extension = fileName.substring(position);      
  72.         return formatDate + uuid + extension;      
  73.     }   
  74. //get set   
  75. }  
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 savef

抱歉!评论已关闭.