HTMLunit(HtmlImage)java.io.IOException:响应中未检测到图像

时间:2015-02-21 16:09:18

标签: java web htmlunit

我尝试从网站上保存图片,正常情况下这是完美的:

 final HtmlImage im = page.getFirstByXPath("//div[@class='picture']/img");

        File imageFile = new File(pictureFile);
        im.saveAs(imageFile);

现在在这个网站上他告诉我:java.io.IOException:没有检测到图像

网站代码是:

<div class="picture">

<img border="0" src="/e/s?random=0.9705617034141113"></img>

有人有想法吗?

编辑:

我发现他给我的是

 final HtmlImage im = page.getFirstByXPath("//div[@class='picture']/img");

<img border="0"/>

为什么o.O

0 个答案:

没有答案