Commit f7df7dc8 by fudahua

\0去除判断

parent cca1200c
......@@ -218,7 +218,7 @@ public class CsvResultSetHelper implements ResultSetHelper {
default:
String s2 = String.valueOf(resultSet.getObject(i + 1));
if(org.apache.commons.lang3.StringUtils.isNotBlank(s2)){
if(s2.contains("E0") || s2.startsWith("0")){
if(s2.contains("E0")){
s2 = s2 + "\t";
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment