|
@@ -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<>();
|