Ejemplo n.º 1
0
 // 下载
 public String downLoadOne() throws Exception {
   String id = ((String[]) formMap.get("id"))[0] + ""; // 获取id
   String ifBackFlag = ((String[]) formMap.get("ifBackFlag"))[0] + ""; // 下载模版还是下载附件 -TECH附件 PATT模版
   ReptTechDtl rt = techReptDtlService.get(Long.parseLong(id)); // dtl
   String path = ""; // path
   String tempName = "";
   List dirList = paraDtlService.get(Dir.class); // 获取事故性质的list
   for (int i = 0; i < dirList.size(); i++) {
     Dir d = (Dir) dirList.get(i);
     if ((d.getParaCode().equalsIgnoreCase("PATT")) && (ifBackFlag.equals("PATT"))) {
       path = d.getCodeDesc() + rt.getReptPattern().getPatternName(); // 路径
       tempName = rt.getAttachName(); // 名
     }
     if ((d.getParaCode().equalsIgnoreCase("TECH")) && (ifBackFlag.equals("TECH"))) {
       path =
           d.getCodeDesc()
               + rt.getTechReptDef().getId()
               + rt.getTechReptDef().getName()
               + "\\"
               + rt.getSaveName(); // 附件路径
       tempName = rt.getUploadName(); // 名
     }
   }
   File file = new File(path);
   if (!file.exists()) {
     return null;
   }
   list = new ArrayList();
   list.add(tempName);
   list.add(file);
   return FILE;
 }