use of com.netsteadfast.greenstep.po.hbm.TbSysFtpTranSegm in project bamboobsc by billchen198318.
the class SystemFtpClientUtils method getFileOnly.
/**
* 取出FTP或SFTP上的檔案
*
* @param tranId TB_SYS_FTP_TRAN.TRAN_ID
* @return
* @throws ServiceException
* @throws Exception
*/
public static SystemFtpClientResultObj getFileOnly(String tranId) throws ServiceException, Exception {
if (StringUtils.isBlank(tranId)) {
throw new Exception(SysMessageUtil.get(GreenStepSysMsgConstants.PARAMS_BLANK));
}
logger.info("getFileOnly begin...");
SystemFtpClientResultObj resultObj = new SystemFtpClientResultObj();
SysFtpTranVO tran = findSysFtpTran(tranId);
SysFtpVO ftp = findSysFtp(tran.getFtpId());
List<TbSysFtpTranSegm> segms = findSysFtpTranSegm(tran.getFtpId(), tran.getTranId());
resultObj.setSysFtp(ftp);
resultObj.setSysFtpTran(tran);
resultObj.setSysFtpTranSegms(segms);
getFiles(resultObj);
logger.info("getFileOnly end...");
return resultObj;
}
use of com.netsteadfast.greenstep.po.hbm.TbSysFtpTranSegm in project bamboobsc by billchen198318.
the class SystemFtpClientUtils method processText.
private static void processText(SystemFtpClientResultObj resultObj) throws Exception {
SysFtpTranVO tran = resultObj.getSysFtpTran();
List<SystemFtpClientData> datas = new LinkedList<SystemFtpClientData>();
List<TbSysFtpTranSegm> segms = resultObj.getSysFtpTranSegms();
for (File file : resultObj.getFiles()) {
SystemFtpClientData ftpData = new SystemFtpClientData();
List<Map<String, String>> fillDataList = new LinkedList<Map<String, String>>();
logWarnFileSize(file);
List<String> strLines = FileUtils.readLines(file, resultObj.getSysFtpTran().getEncoding());
if (YesNo.YES.equals(resultObj.getSysFtpTran().getUseSegm())) {
for (int i = 0; i < strLines.size(); i++) {
String strData = strLines.get(i);
if (strData.length() < 1) {
logger.warn("The file: " + file.getPath() + " found zero line.");
continue;
}
if (i < tran.getBeginLen()) {
// not begin line.
continue;
}
Map<String, String> dataMap = new HashMap<String, String>();
fillStrLine2Map(resultObj.getSysFtpTran(), segms, dataMap, strData);
fillDataList.add(dataMap);
}
}
ftpData.setContent(getContent(strLines));
ftpData.setDatas(fillDataList);
ftpData.setFile(file);
datas.add(ftpData);
}
resultObj.setDatas(datas);
}
Aggregations