如何从网站获取我的数据,以便我可以解析它?

这个问题在这里已经有了答案:

  • 将InputStream读取/转换为字符串56个答案

  • 你可以使用这个:

    BufferedReader reader = new BufferedReader(new InputStreamReader(is, Charset.forName("UTF-8"))); String parseThis = reader.readLine();

    这会给你一串输出。 如果它在JSON中,请添加:

    JSONObject jsonObj = new JSONObject(parseThis); JSONArray arrayOfStuff = jsonObj.getJSONArray(array_tag);

    链接地址: http://www.djcxy.com/p/13745.html

    上一篇: How to get my data from website so I can parse it?

    下一篇: Best way to build a String out of characters