日期:2014-05-20 浏览次数:20709 次
<input name="cmpPic" class="{validate:{required:true,accept:'bmp?|jpg|gif|png'}}" type="file"/>
String path=ServletActionContext.getServletContext().getRealPath("/company_image"); File cmpPicSrc= new File(company.getCmpPic()); String newFileName=company.getCmpId()+"_"+System.currentTimeMillis()+".jpg"; File cmpPicDest= new File(path,newFileName); FileUtils.copyFile(cmpPicSrc, cmpPicDest);