<constant name="枯缓struts.multipart.maxSize"value=“10701096"/>
String realpath = ServletActionContext.getServletContext().getRealPath("/upload") //获取服务器路径String[] targetFileName = uploadFileName
for (int i = 0i <upload.lengthi++) {
File target = new File(realpath, targetFileName[i])
FileUtils.copyFile(upload[i], target)
//这是一个伏棚文件复制类copyFile()里面就是IO *** 作,如果你不用这个类也可以自己写一个IO复制文件的类
}
其中private File[] upload// 实际上传返如文件
private String[] uploadContentType// 文件的内容类型
private String[] uploadFileName// 上传文件名
这三个参数必须这样命名,因为文件上传控件默认是封装了这3个参数的,且在action里面他们应有get,漏厅启set方法
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)