使用HttpsURLConnection获取调用以获取图像

时间:2017-08-11 13:05:11

标签: java rest

我正在调用一些外部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调用以获取此图像?

1 个答案:

答案 0 :(得分:0)

app