org.jar将json转换为xml,但在转换其给定输出时包括& quot。
杰森: { “组织”:{ “公司”:[{ “ComapnyAddress”: “地址1”, “公司名称”: “ABCD”},{ “ComapnyAddress”: “地址2”, “公司名称”: “PQRS”}]}} < / p>XML:
“{” 组织 “:{” 公司 “:[{” ComapnyAddress “:” 地址1" , “公司名称”: “ABCD”},{ “ComapnyAddress”: “地址2”, “公司名称”: “PQRS”} ]}}“
答案 0 :(得分:2)
尝试使用
JSONObject o = new JSONObject(jsonString);
String xml = org.json.XML.toString(o);