架构师_程序员_码农网

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 7948|回复: 0

[JavaEE] struts2文件上传

[复制链接]
发表于 2014-12-24 02:12:11 | 显示全部楼层 |阅读模式
[mw_shl_code=java,true]
  <body><%--
  orm表单以二进制的方式查询,需要设置enctype=“multipart/form-data”
    --%><form action="${pageContext.request.contextPath}/de/ServletActionupload"  enctype="multipart/form-data" method="post"/>
            文件<input type="file" name="image"/>
            <input type="submit" value="上传"/>
    </form>
  </body>

        <action name="ServletAction*" class="action.ServletAction" method="{1}">
                <result name="message">/index.jsp</result>
                <result name="uploadmsg">/uploadmsg.jsp</result>
                </action>

...
private File image;
        private String imageFileName;//前面为字段名称 后面为FileName
       
       
       
        public String getImageFileName() {
                return imageFileName;
        }

        public void setImageFileName(String imageFileName) {
                this.imageFileName = imageFileName;
        }

        public File getImage() {
                return image;
        }

        public void setImage(File image) {
                this.image = image;
        }


/**
         * 上传文件
         * @return
         * @throws IOException
         */
        public String upload(){
               
                        try {
                                String realpath = ServletActionContext.getServletContext().getRealPath("/images");
System.out.println(realpath);
if (image!=null) {
                                File savefile = new File(new File(realpath),imageFileName);
                                if (!savefile.getParentFile().exists()) {
                                        savefile.getParentFile().mkdir();
                                }
                                FileUtils.copyFile(image,savefile);
                                ActionContext.getContext().put("msg", "上传成功!");
                               
}else {
ActionContext.getContext().put("msg", "请选择文件");
}
                        } catch (IOException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                                ActionContext.getContext().put("msg", "上传失败!");
                        }
                return "uploadmsg";
        }


[/mw_shl_code]




上一篇:感觉这个论坛好冷清吖,随便发张图吧,反正也没人看。哈
下一篇:struts2自定义时间转换器
码农网,只发表在实践过程中,遇到的技术难题,不误导他人。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

免责声明:
码农网所发布的一切软件、编程资料或者文章仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。如有侵权请邮件与我们联系处理。

Mail To:help@itsvse.com

QQ|手机版|小黑屋|架构师 ( 鲁ICP备14021824号-2 )|网站地图

GMT+8, 2024-4-29 18:29

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表