struts2上传文件的文件名

struts2中经常用图片上传,在action中如何获得上传图片的名称及其类型呢。

第一步:表单填写。

这里用struts标签。<%@taglib prefix="s" uri="/struts-tags" %>
<form id="pho"  method="post"  enctype="multipart/form-data">

请选择照片: <s:file id="imgFile" required="ture" name=" imgFile"></s:file>
<input id="butImg" type="button" value="提交"/>
</form>

第二步:action属性。
在action中写上传图片属性(省略set、get方法)
private File imgFile;
//文件名称
private String imgFileFileName;
//文件类型
private String imgFileContentType;

注意红色部分要一致,这样才能拿到上传文件的名称和类型。

图片上传的方法,详细:

//返回保存成功后图片的名称
private String saveImg()throws IOException {
//文件保存路径 D:\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\wkh\images
String savePath = ServletActionContext.getRequest().getRealPath("/") + "images";
//文件保存URL/wkh
//String saveURL = ServletActionContext.getRequest().getContextPath();

//获取文件
File file = this.getImgFile();
//获取文件名
String oldName = this.getImgFileFileName();

//判断文件类型
String[] types = new String[]{"gif", "jpg", "jpeg","JPG", "JPEG", "png", "bmp", "PNG", "BMP"};

//设置上传最大字节
long maxSize = 10000000;

//客户端的笔
//PrintWriter out = ServletActionContext.getResponse().getWriter();
//设置返回类型
ServletActionContext.getResponse().setContentType("text/html; charset=UTF-8");
ServletActionContext.getResponse().setCharacterEncoding("UTF-8");

//检查目录
File uploadDir = new File(savePath);
if (!uploadDir.isDirectory()) {
uploadDir.mkdir();
}

FileInputStream fileInputStream = new FileInputStream(file);
if (fileInputStream.available() > maxSize) {
return "上传图片大小超过限制。";
}

//判断上传文件的格式
String fileExt = oldName.substring(oldName.lastIndexOf(".") + 1);
         if (!Arrays.<String>asList(types).contains(fileExt)) {
return "上传图片的格式不正确。";
}

//重命名上传文件
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
String newName = sdf.format(new Date()) + new Random().nextInt(1000) + "." + fileExt;

//保存图片
try {
writerImg(fileInputStream,savePath + "\\" + newName);
} catch (Exception e) {

return "文件上传失败。";
}


return newName;
}

你可能感兴趣的:(struts2图片上传)