有没有一种更简单的方法可以将 json 字符串文字转换为 json 对象,而不是手动编码“\”。
样本数据,但我的比这大得多。
{"phonetype":"N95","cat":"WP"}
//Easier way? Equivalent of JSON.Stringify({"phonetype":"N95","cat":"WP"})?
JSONObject jsonObj = new JSONObject("{\"phonetype\":\"N95\",\"cat\":\"WP\"}");