발주서 도면압축파일 첨부

This commit is contained in:
2025-12-10 17:47:17 +09:00
parent 035c09738b
commit 0b99895049
2 changed files with 3 additions and 2 deletions

View File

@@ -1751,7 +1751,8 @@ public class CommonUtils {
zos = new ZipOutputStream(new FileOutputStream(zipFile));
for(HashMap hm_f : fileList){
String filePath = CommonUtils.checkNull(hm_f.get(Constants.Db.COL_FILE_PATH)) +"\\"+ CommonUtils.checkNull(hm_f.get(Constants.Db.COL_FILE_SAVED_NAME));
// OS에 맞는 경로 구분자 사용
String filePath = CommonUtils.checkNull(hm_f.get(Constants.Db.COL_FILE_PATH)) + File.separator + CommonUtils.checkNull(hm_f.get(Constants.Db.COL_FILE_SAVED_NAME));
String fileName = CommonUtils.checkNull(hm_f.get(Constants.Db.COL_FILE_REAL_NAME));
File _f = new File(filePath);