<form name=\"大众upload\公众 method=\"大众post\"大众 enctype=\"大众multipart/form-data\公众 >

<a href=\"大众#\"大众 onclick=\"大众formSubmit('productAction_upload','_self');this.blur();\"大众>保存</a>

<tr>

jsp中显示图片怎么设置大小SSH框架 进行图片上传具体图解注释让你一看就看得懂 Python

<td class=\"大众columnTitle\"大众>产品图片:</td>

<td class=\公众tableContent\"大众>

<!--上传图片、文件的代码--> <input type=\"大众file\公众 name=\"大众upload\公众 id=\"大众upload\公众

onchange=\公众javascript:setImagePreview();\公众>

<div id=\"大众localImag\"大众>

<img id=\"大众preview\公众 width=-1 height=-1 style=\"大众diplay:none\"大众 />

</div>

</td>

</tr>

</from>

2.在Action中

//把稳一定要记得定义这两个 private File upload 页面返回的上传数据。
private String uploadFileName 文件名;

private File upload;//动作类上传的属性必须是file类型,upload为表单的name值

private String uploadFileName; //上传的文件名称,固定写法:name+FileName;

@Action(value=\公众productAction_upload\"大众)

public String execute() throws Exception {

/定义一个要保存到的路径 把稳,如果想保存到项目中显示,直接更具路径找到自己想保存的地方,写上路径名就可以了,这里我是保存到我的一个项眼前了,等会要在页面进行回显数据/

String path = \"大众E:ilcbs_server_web//src//main//webapp//images//upload//\"大众;

//判断路径名是否存在,不存在则创建 mkdir

File file = new File(path);

if(!file.exists()){

file.mkdir();

}

//将页面传过来的数据通过FileUtils 拷贝到我们刚刚定义的路径下

FileUtils.copyFile(upload, new File(file,uploadFileName));

//获取路径名+文件名的字符串:自己做测试用的可写可不写根据需求了

String file2 = new File(file,uploadFileName).toString();

System.out.println(\"大众文件名:\"大众+uploadFileName);

System.out.println(\"大众file2:\"大众+file2);

//想把图片在页面回显,因此自保存文件名到数据库就可以了 路径通过项目的相对路径来获取

//uploadFileName 便是文件名,不要赋值什么的直接 private String uploadFileName; 定义好getset 后就能得到上传的文件名

model.setProductImage(uploadFileName);//给数据库图片的属性名赋值ProductImage上图片名字

productService.saveOrUpdate(model);//调用保存方法保存数据

return \"大众alist\"大众;

}

3.页面面回显

//style=\"大众width:50px;height:50px\"大众 设置图片显示大小 如上我的图片保存到 //E://ilcbs_server_web//src//main//webapp//images //upload//中的 ,那么我直接用${pageContext.request.contextPath }获取到webapp目录下,后面再拼接目录名直到自己的文件名

<img style=\"大众width:50px;height:50px\"大众 src=\"大众${pageContext.request.contextPath }/images/upload/${o.productImage}\"大众 />

//这种方法提交的话,每次上传完后都不会立即在页面回显数据的 可以自己手动刷新项目,再刷新页面就可以了。
想办理的话可以放到tomcat中,但是下次重启做事器会丢失数据,不想放进去的话可以配置下Eclipse,在设置中勾选refresh即可 。
如下图:配置后就不须要刷新项目了,直接刷新页面即可。