国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

Java:使用URL下載圖片為何圖片下載不完全呢?

瀏覽:138日期:2024-01-20 16:53:07

問題描述

public class Client { public static void main(String[] args) {try { URL url = new URL('http://www.iteye.com/upload/logo/user/1177132/a7159cc1-b11a-3122-9a9d-5183d6c6ba99.jpg'); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setConnectTimeout(5 * 1000); InputStream inputStream = connection.getInputStream(); byte[] tmp = new byte[1024]; int length; OutputStream outputStream = new FileOutputStream('E:' + File.separator + 'eee.jpg'); while ((length = inputStream.read(tmp)) != -1) {outputStream.write(tmp, 0, length); } outputStream.close(); inputStream.close();} catch (Exception e) { e.printStackTrace();} }}

圖片URL:http://www.iteye.com/upload/l...圖片有3K,但我下載后圖片只有2K而且圖片是錯誤的這是為什么呢?

問題解答

回答1:

你把代碼改成這樣試試

public class Client { public static void main(String[] args) {try { URL url = new URL('http://www.iteye.com/upload/logo/user/1177132/a7159cc1-b11a-3122-9a9d-5183d6c6ba99.jpg'); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestProperty('User-Agent', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.19 Safari/537.36'); connection.setConnectTimeout(5 * 1000); InputStream inputStream = connection.getInputStream(); byte[] tmp = new byte[1024]; int length; OutputStream outputStream = new FileOutputStream('E:' + File.separator + 'eee.jpg'); while ((length = inputStream.read(tmp)) != -1) {outputStream.write(tmp, 0, length); } outputStream.close(); inputStream.close();} catch (Exception e) { e.printStackTrace();} }}

不添加UA下載下來的文件其實是這樣的Java:使用URL下載圖片為何圖片下載不完全呢?

回答2:

outputStream.close()之前,先調用outputStream.flush(),這個方法能強制把輸出流緩沖全部寫出來。你前邊的都沒錯,就差一步了。

回答3:

這是我用你的代碼讀到的東西。

Java:使用URL下載圖片為何圖片下載不完全呢?

目標禁止了,為connection添加一個user-agent屬性吧。

標簽: java
相關文章:
主站蜘蛛池模板: 广昌县| 桂林市| 巴东县| 扎赉特旗| 琼海市| 常德市| 河北区| 镇远县| 寿光市| 谢通门县| 尤溪县| 镇远县| 河源市| 突泉县| 库尔勒市| 鹿邑县| 濉溪县| 黄浦区| 西宁市| 久治县| 翼城县| 鸡泽县| 封开县| 迭部县| 桐庐县| 眉山市| 石林| 浮梁县| 秭归县| 迁安市| 汾西县| 满洲里市| 平谷区| 禹城市| 腾冲县| 丰台区| 黑山县| 镇原县| 贡嘎县| 灌南县| 泽库县|