下载网络文件HttpURLConnection.getContentLength()大小为 0

来源:互联网 发布:艾瑞数据网站排名 编辑:程序博客网 时间:2024/05/17 02:48

HttpURLConnection conn = (HttpURLConnection)url.openConnection();

conn .setRequestProperty("Accept-Encoding", "identity"); //加上这句话解决问题

conn.connect();

int length = conn.getContentLength();

InputStream is = conn.getInputStream();

0 0
原创粉丝点击