Struts2上传rar文件到本地文件显示为null
if(productImage!=null){
//String vpath="/DASCOM/image/"+product_type.getPtname()+".jpg";
String vpath = "/DASCOM/image/"+productImageFileName;
ServletContext application = ServletActionContext.getServletContext();
File destFile = new File("D:/"+vpath);
FileUtils.copyFile(productImage, destFile);
product.setPimage("DASCOM/image/"+productImageFileName);
productDao.update(product);
}
if(driveRar!=null){
String dpath = "/DASCOM/drive/"+driveRarName;
ServletContext application = ServletActionContext.getServletContext();
File destFile = new File("D:/"+dpath);
FileUtils.copyFile(driveRar, destFile);
System.out.println(destFile);
product.setDrive(drive);
productDao.update(product);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我现在改变了写法,另外上传,这里先下拉选择文件名获取id传到数据库,
文件上传成功了吗?是说更新数据库失败?打个断点看看