試試這個,它的工作
public class JsonRead{
public static void main(String[] args) throws JSONException {
String data="{id: 378,name:\"abcd\",street:\"street name\",house no: \"200\",zip code: \"22998\",City: \"New York\",City: \"New York\",Country: \"USA\"}";
JSONObject parse = new JSONObject(data);
JSONObject newData=new JSONObject();
System.out.println("value of name:::: "+parse.get("name"));
newData.put("name", parse.get("name"));
System.out.println("In JSon Format:::::"+newData.toString());
}
}
輸出:名稱:::: ABCD
新的Json ::::: {的
值」名稱「:」abcd「}
希望這可以幫助你解決你的問題...... !!!!!!
您正在使用JSON paersing什麼語言請張貼我使用的Java – Amy 2014-12-19 04:33:54
後,你已經嘗試 – rockingzebra 2014-12-19 04:39:51
代碼 – Amy 2014-12-19 04:40:34