외주요청 파일 다운로드 수정
parent
5ccfbe310f
commit
d05dd6ee89
@ -0,0 +1,146 @@
|
|||||||
|
package cokr.xit.base.file.etc;
|
||||||
|
|
||||||
|
import java.io.BufferedWriter;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.FileWriter;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.StandardCopyOption;
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.egovframe.rte.fdl.string.EgovStringUtil;
|
||||||
|
|
||||||
|
import cokr.xit.fims.cmmn.CmmnUtil;
|
||||||
|
import cokr.xit.fims.cmmn.Hangul;
|
||||||
|
import cokr.xit.fims.sprt.PrintOption;
|
||||||
|
import cokr.xit.foundation.data.DataObject;
|
||||||
|
import net.lingala.zip4j.ZipFile;
|
||||||
|
|
||||||
|
public class OutsourcingFileWriter {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public Map<String, Object> makeOutsourcingFile(String printKorName, PrintOption printOption,
|
||||||
|
List<DataObject> dataObjectList, List<DataObject> printStngItems) {
|
||||||
|
Map<String, Object> result = new HashMap<>();
|
||||||
|
|
||||||
|
Hangul hangul = new Hangul(2);
|
||||||
|
|
||||||
|
SimpleDateFormat ymdhmsFormat = new SimpleDateFormat("yyyyMMddHHmmss");
|
||||||
|
String currentTime = ymdhmsFormat.format(new Date());
|
||||||
|
String year = currentTime.substring(0, 4);
|
||||||
|
String month = currentTime.substring(4, 6);
|
||||||
|
String day = currentTime.substring(6, 8);
|
||||||
|
String yyyymmdd = year+month+day;
|
||||||
|
|
||||||
|
String outsourcingResultPath = "files"+File.separator+"result"+File.separator+"outsourcing"
|
||||||
|
+ File.separator + year + File.separator + month + File.separator + day
|
||||||
|
+ File.separator + currentTime;
|
||||||
|
|
||||||
|
File folder = new File(outsourcingResultPath);
|
||||||
|
if(!folder.exists()) {
|
||||||
|
folder.mkdirs();
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
|
||||||
|
|
||||||
|
String imagesFolderName = yyyymmdd + printKorName;
|
||||||
|
String metaFileName = yyyymmdd + printKorName + "(외주파일).txt";
|
||||||
|
|
||||||
|
String imagesFolderPath = outsourcingResultPath + File.separator + imagesFolderName;
|
||||||
|
String metaFilePath = outsourcingResultPath + File.separator + metaFileName;
|
||||||
|
|
||||||
|
File imagesFolderPathFile = new File(imagesFolderPath);
|
||||||
|
if (!imagesFolderPathFile.exists()) {
|
||||||
|
imagesFolderPathFile.mkdirs();
|
||||||
|
}
|
||||||
|
|
||||||
|
for(int i=0; i < dataObjectList.size(); i++) {
|
||||||
|
DataObject dataObject = dataObjectList.get(i);
|
||||||
|
int crdnPhotoCnt = dataObject.number("CRDN_PHOTO_CNT").intValue();
|
||||||
|
|
||||||
|
for(int j=0; j < crdnPhotoCnt; j++){
|
||||||
|
String orgnFilePath = dataObject.string("CRDN_PHOTO"+(j+1));
|
||||||
|
String fileKey = dataObject.string("CRDN_PHOTO"+(j+1)+"KEY");
|
||||||
|
|
||||||
|
if(EgovStringUtil.null2void(orgnFilePath).equals("")) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!orgnFilePath.startsWith("files")) {
|
||||||
|
orgnFilePath = CmmnUtil.copyStaticResource(orgnFilePath, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
File orgnFile = new File(orgnFilePath);
|
||||||
|
if(!orgnFile.exists() || !orgnFile.canRead()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
InputStream orgnFileInputStream = new FileInputStream(orgnFile);
|
||||||
|
|
||||||
|
String modifiedFileName = "P"+fileKey+CmmnUtil.indexToAlphabet(j, true, true)+"."+"JPG";
|
||||||
|
|
||||||
|
String modifiedFilePath = imagesFolderPath + File.separator + modifiedFileName;
|
||||||
|
|
||||||
|
File modifiedFile = new File(modifiedFilePath);
|
||||||
|
|
||||||
|
if(dataObject.get("MOS"+fileKey) != null) {
|
||||||
|
CmmnUtil.createMaskedImage(orgnFileInputStream, modifiedFile, (List<DataObject>)dataObject.get("MOS"+fileKey));
|
||||||
|
} else {
|
||||||
|
Files.copy(orgnFileInputStream, modifiedFile.toPath(), StandardCopyOption.REPLACE_EXISTING);
|
||||||
|
}
|
||||||
|
dataObject.set("CRDN_PHOTO"+(j+1), modifiedFilePath);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
File file = new File(metaFilePath);
|
||||||
|
if (!file.exists()) {
|
||||||
|
file.createNewFile();
|
||||||
|
}
|
||||||
|
FileWriter fw = new FileWriter(file);
|
||||||
|
BufferedWriter writer = new BufferedWriter(fw);
|
||||||
|
|
||||||
|
|
||||||
|
for(int i=0; i < dataObjectList.size(); i++) {
|
||||||
|
DataObject dataObject = dataObjectList.get(i);
|
||||||
|
|
||||||
|
if(i != 0) {
|
||||||
|
writer.write("\n");
|
||||||
|
}
|
||||||
|
String line = "";
|
||||||
|
for(DataObject printStngItem : printStngItems){
|
||||||
|
String colNm = printStngItem.string("COL_NM");
|
||||||
|
int byteCnt = printStngItem.number("BYTE_CNT").intValue();
|
||||||
|
line += hangul.rpadByte(dataObject.string(colNm), byteCnt, " ");
|
||||||
|
}
|
||||||
|
writer.write(line);
|
||||||
|
}
|
||||||
|
|
||||||
|
writer.close();
|
||||||
|
|
||||||
|
String zipFileName = yyyymmdd + printKorName + ".zip";
|
||||||
|
String zipFilePath = outsourcingResultPath + File.separator + zipFileName;
|
||||||
|
|
||||||
|
ZipFile zipFile = new ZipFile(zipFilePath);
|
||||||
|
zipFile.addFile(new File(metaFilePath));
|
||||||
|
zipFile.addFolder(new File(imagesFolderPath));
|
||||||
|
zipFile.close();
|
||||||
|
|
||||||
|
result.put("filename", zipFileName);
|
||||||
|
result.put("filePath", zipFilePath);
|
||||||
|
result.put("file", new File(zipFilePath));
|
||||||
|
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new RuntimeException("외주파일생성 중 오류가 발생하였습니다.");
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue