下载线图片但获得许可被拒绝

时间:2018-01-20 13:29:38

标签: java url networking connect

我正在尝试使用Java来下载这些漫画图片。我从HTML代码中获取了这些图片的Url,但是当我连接到它时,服务器告诉我,我没有权限访问它上面的图片。 我试图找出是否有一些帖子或获得请求获得许可的请求,但找不到它。有人可以帮助我获得访问权限吗? 非常感谢^ ^!

网页链接:http://www.webtoons.com/zh-hant/drama/yushentongxing/%E7%AC%AC1%E8%A9%B1-%E7%A5%9E%E7%9A%84%E5%AF%A9%E5%88%A4-01/viewer?title_no=734&episode_no=1

和图片的链接:http://webtoon.phinf.naver.net/20160901_41/1472713930299oYcIe_JPEG/147271393026973416.jpg?type=q90

拒绝消息:

推荐被拒绝 您无权访问“http://webtoon.phinf.naver.net/20160901_41/1472713930299oYcIe_JPEG/147271393026973416.jpg?”在这台服务器上。 参考#24.5e41ca3.1516454916.3d5b39b

这是我下载图片的代码:

URL url = new URL(src);
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
BufferedImage image = ImageIO.read(url);
ImageIO.write(image, "jpg", new File(output));

1 个答案:

答案 0 :(得分:0)

服务器只需检查 Referer HTTP标头,以匹配" http://www.webtoons.com/" (从页面加载图像时由浏览器自动添加)

因此,在代码为我打印200个成功代码后,通过API添加此标题就足够了:

        URL url = new URL("http://webtoon.phinf.naver.net/20160901_41/1472713930299oYcIe_JPEG/147271393026973416.jpg?type=q90");
        HttpURLConnection connection = (HttpURLConnection)url.openConnection();
        connection.setRequestProperty("Referer", "http://www.webtoons.com/");
        int responseCode = connection.getResponseCode();
        System.out.println(responseCode);