11

是否可以通过提供图像 URL 来使用 HTMLUnit 将图像保存到硬盘?如果有怎么办?

问候!

4

2 回答 2

12

如果您使用的是 HtmlUnit,那么您应该有一个 HtmlPage。在那里你可以得到一个 HtmlImage 并以这种方式保存文件:

HtmlImage image = page.<HtmlImage>getFirstByXPath("//img[@src='blah']");
File imageFile = new File("/path/to/file.jpg");
image.saveAs(imageFile);

如果您确实有一个 URL……那么我认为您不需要 HtmlUnit 来下载图像。

于 2012-05-19T06:05:10.540 回答
0

这是我编写这样的代码的方式:

NodeList nlx = downloadPage.getElementsByTagName("a");
for (int y = 0; y<nlx.getLength(); y++) {
    String ss = nlx.item(y).toString();
    if(ss.contains("download/?fileformat=kml")) {
        System.out.println(ss);
        HtmlElement anchorAttachment = (HtmlElement)nlx.item(y);
        InputStream is =anchorAttachment.click().getWebResponse().getContentAsStream();
        try {
            //System.out.println(is);
            OutputStream out = new FileOutputStream(new File(fileName+".KML"));

            int read=0;
            byte[] bytes = new byte[1024];
            while((read = is.read(bytes))!= -1) {
                out.write(bytes, 0, read);
            }
            is.close();
            out.flush();
            out.close();    
            System.out.println("New file created!");
        } catch (IOException e) {
            System.out.println(e.getMessage());
        }
    }
}
于 2012-07-13T12:48:59.613 回答