Browse Source

优化:明文与加密文本校验。

lym 2 years ago
parent
commit
47525695c2

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

@@ -59,7 +59,7 @@ public class TransUtils {
 		String target = fileDir + File.separator + fileName;
 		String text = readToLineFile(new File(target), "GBK");
 		String lineText = text;
-		if (isDesBase64(text)){ //Base64编码的字符串
+		if (!text.contains("|\n")){
 			lineText = desBase64(text);
 		}
 		String[] lines = lineText.split("\n");