Prechádzať zdrojové kódy

优化:兼容明文报文解读。

lym 2 rokov pred
rodič
commit
5ddd62579a

+ 11 - 1
src/main/java/com/hywa/banktest/bankframework/utils/TransUtils.java

@@ -58,7 +58,10 @@ public class TransUtils {
 		List<TransVo> transVos = new ArrayList<>();
 		String target = fileDir + File.separator + fileName;
 		String text = readToLineFile(new File(target), "GBK");
-		String lineText = desBase64(text);
+		String lineText = text;
+		if (isDesBase64(text)){ //Base64编码的字符串
+			lineText = desBase64(text);
+		}
 		String[] lines = lineText.split("\n");
 		if (lines != null && lines.length > 1) {
 			for (int i = 1; i < lines.length; i++) {
@@ -248,6 +251,13 @@ public class TransUtils {
 		}
 		return null;
 	}
+
+	//是否base64加密
+	private static Boolean isDesBase64(String text){
+		String base64Pattern = "^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)$";
+		Boolean isLegal = text.matches(base64Pattern);
+		return isLegal;
+	}
 	
 	public static void main(String args[]) {
 //		List<TransVo> transVos = new ArrayList<>();

+ 2 - 1
src/main/resources/mappers/clearing/ClearingRecordDetailMapper.xml

@@ -135,7 +135,8 @@
       SET aa.bank_receipt_file =#{bean.bankReceiptFile},
       aa.bank_deal_state = #{bean.bankDealState},
       aa.clearing_state = #{bean.clearingState},
-      aa.bank_deal_msg = #{bean.bankDealMsg}
+      aa.bank_deal_msg = #{bean.bankDealMsg},
+      aa.payment_time = #{bean.clearingTimed}
       WHERE
       aa.id = #{bean.id}
     </foreach>