您也可以尝试这种方式。我已经尝试和测试过了。
步骤1:请下载java-json.jar
步骤2:将
/libs其添加到项目的文件夹,然后添加到构建路径。
步骤3:然后按以下方式使用
- 进口寻找
import org.json.JSONException; import org.json.JSONObject; import org.json.XML;
- 样品串
String sampleXml = "<?xml version="1.0" encoding="utf-8"?>" + "<mobilegate>" +"<timestamp>232423423423</timestamp>" + "<txn>" + "Transaction" + "</txn>" + "<amt>" + 0 + "</amt>" + "</mobilegate>";
- 杰森·斯特林
JSonObject jsonObj = null; try { jsonObj = XML.toJSonObject(sampleXml); } catch (JSonException e) { Log.e("JSON exception", e.getMessage()); e.printStackTrace(); } Log.d("XML", sampleXml); Log.d("JSON", jsonObj.toString());输出:
XML:
<?xml version="1.0"encoding="utf-8"?><mobilegate><timestamp>232423423423</timestamp><txn>Transaction</txn><amt>0</amt></mobilegate>
JSON:
{"mobilegate":{"timestamp":232423423423,"amt":0,"txn":"Transaction"}}


