示例String:{"schema" : {"$ref" : "#/defined/220.html"}}
zed5wv101#
您好, 请你在指出问题的同时,最好在能指出版本号. 还有最好不要截图. 贴代码上来,方便我们给您解决问题.
mklgxw1f2#
1.2.57和1.2.68都会有这种情况。
代码:public static JSONObject specsJson(){String str = "{"schema" : {"$ref" : "#/defined/220.html"}}";System.out.println("str:" + str);JSONObject json = JSONObject.parseObject(str);return json;}
public static void main(String[] args){ Map<String, Object> map = specsMap(); JSONObject json = specsJson(); System.out.println("map -> " + map.get("schema")); System.out.println("json -> " + json.toJSONString()); }
2条答案
按热度按时间zed5wv101#
您好, 请你在指出问题的同时,最好在能指出版本号. 还有最好不要截图. 贴代码上来,方便我们给您解决问题.
mklgxw1f2#
您好, 请你在指出问题的同时,最好在能指出版本号. 还有最好不要截图. 贴代码上来,方便我们给您解决问题.
1.2.57和1.2.68都会有这种情况。
代码:
public static JSONObject specsJson(){
String str = "{"schema" : {"$ref" : "#/defined/220.html"}}";
System.out.println("str:" + str);
JSONObject json = JSONObject.parseObject(str);
return json;
}