码迷,mamicode.com
首页 > Web开发 > 详细

struts2文件上传

时间:2015-06-12 08:38:29      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

 

struts2文件上传,也是。。。

 

import java.io.File;
import org.apache.struts2.ServletActionContext;

public class UploadAction {

    // 输入
    private File some; // 拦截器给的临时文件
    private String someFileName; // 原始文件名

    public String execute() {
        if (some == null)
            return "error";
        // 1.拼一个与部署项目相对的路径
        String path = "upload/" + someFileName;
        // 2.根据相对路径得到绝对路径
        path = ServletActionContext.getServletContext().getRealPath(path);
        // 3.将临时文件复制到绝对路径下
        FileUtil.copy(some, new File(path));
        return "success";
    }

    public File getSome() {
        return some;
    }

    public void setSome(File some) {
        this.some = some;
    }

    public String getSomeFileName() {
        return someFileName;
    }

    public void setSomeFileName(String someFileName) {
        this.someFileName = someFileName;
    }

}

 

struts2文件上传

标签:

原文地址:http://www.cnblogs.com/liaolongjun/p/4570753.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!