我是靠谱客的博主 从容手套,最近开发中收集的这篇文章主要介绍从URL获取JSON字符串转成JSONObject,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

private static JSONObject getObjectFromUrl(String s) throws IOException{
StringBuffer buffer = new StringBuffer();
// 通过js的执行路径获取后台数据进行解析
URL url = new URL(s);
HttpURLConnection http = (HttpURLConnection) url.openConnection();
http.setDoOutput(true);
http.setDoInput(true);
http.setUseCaches(false);
http.setRequestMethod("GET");
http.connect();
// 将返回的输入流转换成字符串
InputStream inputStream = http.getInputStream();
InputStreamReader inputStreamReader = new InputStreamReader(inputStream, "utf-8");
BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
String str = null;
while ((str = bufferedReader.readLine()) != null) {
buffer.append(str);
}
bufferedReader.close();
inputStreamReader.close();
// 释放资源
inputStream.close();
inputStream = null;
http.disconnect();
str = buffer.toString();
int index = str.indexOf("(");
String jsonString = str.substring(index + 1, str.length() -1);
JSONObject jo = JSONObject.fromObject(jsonString);
return jo;
}
public static void main(String[] args) throws IOException {
JSONObject jo=getObjectFromUrl("URL");
//当前页文章数组
JSONArray jsonArray = JSONArray.fromObject(jo.get("list"));
int arrlength=jsonArray.size();
for(int j=0;j<arrlength;j++){
JSONObject a = jsonArray.getJSONObject(j);
}
}

最后

以上就是从容手套为你收集整理的从URL获取JSON字符串转成JSONObject的全部内容,希望文章能够帮你解决从URL获取JSON字符串转成JSONObject所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部