json使用json.org jar给java中的xml

时间:2013-12-20 10:44:49

标签: xml json org.json

org.jar将json转换为xml,但在转换其给定输出时包括& quot。

杰森: { “组织”:{ “公司”:[{ “ComapnyAddress”: “地址1”, “公司名称”: “ABCD”},{ “ComapnyAddress”: “地址2”, “公司名称”: “PQRS”}]}} < / p>

XML:

“{” 组织 “:{” 公司 “:[{” ComapnyAddress “:” 地址1" , “公司名称”: “ABCD”},{ “ComapnyAddress”: “地址2”, “公司名称”: “PQRS”} ]}}“

1 个答案:

答案 0 :(得分:2)

尝试使用

JSONObject o = new JSONObject(jsonString);
String xml = org.json.XML.toString(o);