看到这个 http://stleary.github.io/JSON-java/org/json/JSONObject.html#JSONObject-
java.lang.String-
JSONObject
public JSonObject(java.lang.String source)throws JSONException
从源JSON文本字符串构造JSONObject。这是最常用的JSONObject构造函数。
Parameters: source - `A string beginning with { (left brace) and ending with } (right brace).` Throws: JSonException - If there is a syntax error in the source string or a duplicated key.
您尝试使用以下方法:
new JSonObject("{your string}")
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)