-1

我需要在 android 中将 HTTP JSON 请求作为数组值传递为 "Id":["13","14","15","17","27","29" ]。我该怎么做?像这样尝试 "Id": { "\"13\"".. }

谢谢。

我的答案:

最后我得到了它。

对于(字符串字符串:新字符串[] {“1”,“2”}){ Carray.put(字符串);}

感谢您的支持。

4

1 回答 1

0
JSONObject Root = new JSONObject();String Data1 = "[13,14,15,17,27,29]";
try 
{
Root.put("Id",  Data1);Log.e("try",Root.toString());
} 
catch (JSONException e) 
{
e.printStackTrace();
}

Using Above Code You Get This Type Of Output//OutPut :- {"Id":["13","14","13","15","27","29"]}

于 2013-04-12T07:08:46.090 回答