|
@@ -50,7 +50,7 @@ public class VendersUtil {
|
|
|
if(totalSize != null)
|
|
|
ret.put("TotalCount", totalSize);
|
|
|
ret.put("Content", arr);
|
|
|
- return JSON.toJSONString(ret, SerializerFeature.WriteMapNullValue);
|
|
|
+ return JSON.toJSONString(ret, SerializerFeature.WriteMapNullValue, SerializerFeature.DisableCircularReferenceDetect);
|
|
|
}
|
|
|
public static JSONObject successJsonMsg(String msg, JSONArray arr){
|
|
|
JSONObject jsonObj = new JSONObject();
|
|
@@ -131,7 +131,7 @@ public class VendersUtil {
|
|
|
//System.out.println("差异步骤:"+dif[len1][len2]);
|
|
|
//计算相似度
|
|
|
double similarity =1 - (double) dif[len1][len2] / Math.max(str1.length(), str2.length());
|
|
|
- System.out.println("字符串\""+str1+"\"与\""+str2+"\"的比较, 相似度:"+similarity);
|
|
|
+// System.out.println("字符串\""+str1+"\"与\""+str2+"\"的比较, 相似度:"+similarity);
|
|
|
return similarity;
|
|
|
}
|
|
|
private static int min(int... is) {
|