HttpConnection底层代码实现Get方法

本文档详细介绍了HttpConnectionGet类中实现GET请求的过程。通过创建URL对象,建立HttpURLConnection连接,设置超时和请求方法,获取响应码,读取输入流并将数据转化为字节数组,展示了如何从指定路径获取HTTP资源。
摘要由CSDN通过智能技术生成
public class HttpConnectionGet {

    public HttpConnectionGet() {
    }
    //
    public static byte[] doGetRequest(String path) {
        InputStream inputStream = null;
        byte[] outdata = null;
        URL url = null;
        HttpURLConnection connection;
        try {
            url = new URL(path);
        } catch (MalformedURLException e) {
            e.printStackTrace();
        }
        if (url != null) {
            try {
                connection = (HttpURLConnection) url.openConnection();
                connection.setConnectTimeout(3000);
                connection.setDoInput(true);
                connection.setRequestMethod("GET");
                int responseCode = connection.getResponseCode();
                if (responseCode == 200)
                    inputStream = connection.getInputStream();
                ///
                ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
                byte[] data = new byte[1024];
                int len = 0;
                while ((len = inputStream.read(data)) != -1)
                    outputStream.write(data, 0, len);
                outdata = outputStream.toByteArray();
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
                if (inputStream != null)
                    try {
                        inputStream.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
            }
        }
        return outdata;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值