Example #1
0
 // 上传文件
 public String upLoadOne() throws Exception {
   JSONObject jsonObject = new JSONObject();
   String id = ((String[]) formMap.get("id"))[0] + ""; // 获取id
   String uploadName = ((String[]) formMap.get("uploadName"))[0] + ""; // 获取id
   ReptTechDtl rt = techReptDtlService.get(Long.parseLong(id)); // dtl
   try {
     String targetDirectory =
         getTechPath() + rt.getTechReptDef().getId() + rt.getTechReptDef().getName();
     String temArr[] = uploadName.split("\\.");
     String fileName = UUID.randomUUID().toString(); // 读取
     if (temArr.length != 0) {
       fileName = fileName + "." + temArr[temArr.length - 1];
     }
     File target = new File(targetDirectory, fileName);
     FileUtils.copyFile(formFile, target);
     // 更新技办人 和上传名称和实际存放的名称
     rt.setTekofficer(getCurUser().getName()); //
     rt.setUploadName(uploadName);
     rt.setSaveName(fileName);
     rt.setUpdDate(DateUtil.dateToDateByFormat(utilService.getSysTime(), DateUtil.FORMAT));
     techReptDtlService.save(rt);
   } catch (Exception e) {
     e.printStackTrace();
     jsonObject.put("result", false);
     json = jsonObject.toString();
     return EASYFILE;
   }
   jsonObject.put("result", true);
   json = jsonObject.toString();
   return EASYFILE;
 }
Example #2
0
 // 删除文件
 public String delLoadOne() throws Exception {
   String id = ((String[]) formMap.get("id"))[0] + ""; // 获取id
   ReptTechDtl rt = techReptDtlService.get(Long.parseLong(id)); // dtl
   JSONObject jsonObject = new JSONObject();
   try {
     if (deleteFile(
         rt.getTechReptDef().getId() + rt.getTechReptDef().getName(),
         rt.getSaveName())) { // 删除文件			
       rt.setTekofficer(getCurUser().getName()); // 更新技办人 和上传名称和实际存放的名称
       rt.setUploadName(null);
       rt.setSaveName(null);
       rt.setUpdDate(DateUtil.dateToDateByFormat(utilService.getSysTime(), DateUtil.FORMAT));
       techReptDtlService.save(rt);
     } else {
       jsonObject.put("result", false);
       json = jsonObject.toString();
       return EASY;
     }
   } catch (Exception e) {
     jsonObject.put("result", false);
     json = jsonObject.toString();
     return EASY;
   }
   jsonObject.put("result", true);
   json = jsonObject.toString();
   return EASY;
 }