JSON

转换JSONArray到字符串

字号+ 作者:H5之家 来源:H5之家 2018-02-09 18:02 我要评论( )

转换`jsonArray`到`StringArray` ,下面是我在服务器获取jsonArray的代码: try { DefaultHttpClient defaultClient = new DefaultHttpClient(); HttpGet httpGe

转换JSONArray到字符串

json android

转换jsonArray到StringArray ,下面是我在服务器获取jsonArray的代码:

try { DefaultHttpClient defaultClient = new DefaultHttpClient(); HttpGet httpGetRequest = new HttpGet("http://server/android/listdir.php"); HttpResponse httpResponse = defaultClient.execute(httpGetRequest); BufferedReader reader = new BufferedReader(new InputStreamReader(httpResponse.getEntity().getContent(),"UTF-8")); String json = reader.readLine(); //JSONObject jsonObject = new JSONObject(json); JSONArray jsonArray = new JSONArray(json); Log.d("", json); //Toast.makeText(getApplicationContext(), json, Toast.LENGTH_SHORT).show(); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); }

JSON如下:

[{"name":"IMG_20130403_140457.jpg"},{"name":"IMG_20130403_145006.jpg"},{"name":"IMG_20130403_145112.jpg"},{"name":"IMG_20130404_085559.jpg"},{"name":"IMG_20130404_113700.jpg"},{"name":"IMG_20130404_113713.jpg"},{"name":"IMG_20130404_135706.jpg"},{"name":"IMG_20130404_161501.jpg"},{"name":"IMG_20130405_082413.jpg"},{"name":"IMG_20130405_104212.jpg"},{"name":"IMG_20130405_160524.jpg"},{"name":"IMG_20130408_082456.jpg"},{"name":"test.jpg"}]

应该怎么转换jsonArray
array = {"IMG_20130403_140457.jpg","IMG_20130403_145006.jpg",........,"test.jpg"};

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • 邻家的技术仓库

    邻家的技术仓库

    2018-02-09 17:10

  • post 请求获取 json

    post 请求获取 json

    2018-01-28 17:20

  • Jpage分页+Hibernate+Ajax+jquery+JSON通用技术二

    Jpage分页+Hibernate+Ajax+jquery+JSON通用技术二

    2018-01-28 15:00

  •  JSON学习札记

    JSON学习札记

    2018-01-27 18:44

网友点评