try {

   url = new URL(https_url);
   HttpsURLConnection posts = (HttpsURLConnection)url.openConnection();

} catch (MalformedURLException e) {
   e.printStackTrace();
} catch (IOException e) {
   e.printStackTrace();
}


如何将HttpsURLConnection posts对象转换为JSONObject?提前致谢。 :)


答案:using the mvn org.json

最佳答案

寻找一个JSON库(那里有很多,从GSON,Jackson等奇特的东西到更轻巧的东西)。
阅读其文档。
根据API,直接传递InputStream,将其包装在阅读器中或将其读取为String。

10-05 22:12