我正在调用一些外部Web服务,我可以使用以下代码成功获取JSON响应:
StringBuffer response = new StringBuffer();
URL obj = new URL(rest_url);
HttpsURLConnection con = (HttpsURLConnection) obj.openConnection();
con.setDoOutput(true);
con.setRequestMethod("GET");
BufferedReader br = new BufferedReader(new InputStreamReader(
(con.getInputStream())));
while ((output = br.readLine()) != null) {
response.append(output);
}
现在,我有一个返回图像的外部Web服务。
如何使用HttpsURLConnection进行GET调用以获取此图像?
答案 0 :(得分:0)
app