Commit 8bf63c6b authored by xinglei's avatar xinglei

修改文件

parent ebfa2207
...@@ -111,6 +111,7 @@ public class JsonUtil { ...@@ -111,6 +111,7 @@ public class JsonUtil {
public static String arraysToString(String[] str){ public static String arraysToString(String[] str){
String result = null; String result = null;
for(int i = 0; i < str.length; i++) { for(int i = 0; i < str.length; i++) {
str[i] = str[i].replace(" ", "");
if (ObjectUtils.isEmpty(result)){ if (ObjectUtils.isEmpty(result)){
result = "#" + str[i]; result = "#" + str[i];
} else { } else {
......
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