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