struts中的文件上传
编程技术  /  houtizong 发布于 3年前   78
struts中的文件上传
1、上传页面代码
<body> <form action="file" enctype="multipart/form-data" method="post"> 图片上传}:<input type="file" name="image"> <br/> <input type="submit" value="提交"> </form></body>
2、struts.xml里面action配置
<action name="file" class="com.edu.hpu.action.FileAction"> <result>/fileuploadsuccess.jsp</result></action>
3、FileAction
package com.edu.hpu.action;import java.io.File;import org.apache.commons.io.FileUtils;import org.apache.struts2.ServletActionContext;import com.opensymphony.xwork2.ActionSupport;public class FileAction extends ActionSupport {private File image;/** * 使用规范: * imageFileName:image(前面文件的名字) + FileName(固定写法) */private String imageFileName;@Overridepublic String execute() throws Exception {//获得文件存储路径String path = ServletActionContext.getServletContext().getRealPath("/images");//创建相应文件对象File saveFile = new File(new File(path),imageFileName);System.out.println(saveFile);//创建文件存路径if(!saveFile.getParentFile().exists()) {saveFile.getParentFile().mkdirs();}//保存文件FileUtils.copyFile(image, saveFile);return super.execute();}public File getImage() {return image;}public void setImage(File image) {this.image = image;}public String getImageFileName() {return imageFileName;}public void setImageFileName(String imageFileName) {this.imageFileName = imageFileName;}}
4、结果展示页面
<body> 文件<s:property value="imageFileName"/>,上传成功!</body>
请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!
技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成
网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];
文章归档
文章标签
友情链接