在android中传递数组值的JSON请求

时间:2013-04-12 06:30:56

标签: android

我需要将HTTP JSON请求作为数组值传递为“Id”:[“13”,“14”,“15”,“17”,“27”,“29”]在android.How我可以做什么那个?我试过这个“Id”:{“\”13 \“”..}

感谢。

我的回答:

最后我明白了。

for(String sstring:new String [] {“1”,“2”}){     Carray.put(sstring); }

感谢您的支持。

1 个答案:

答案 0 :(得分: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();
}

使用上面的代码你得到这种类型的输出// OutPut: - {“Id”:[“13”,“14”,“13”,“15”,“27”,“29”]}