我如何从 xml 文件 url 中的链接中解析图像。当我解析数据时,除了显示图像之外,它还会显示链接。这是图片的链接http://www.worldweatheronline.com/images/wsymbols01_png_64/wsymbol_0001_sunny.png
和链接我解析数据
我如何从 xml 文件 url 中的链接中解析图像。当我解析数据时,除了显示图像之外,它还会显示链接。这是图片的链接http://www.worldweatheronline.com/images/wsymbols01_png_64/wsymbol_0001_sunny.png
和链接我解析数据
这是从 url 制作缓冲图像的代码。
try {
URL url = new URL("http://www.worldweatheronline.com/images/wsymbols01_png_64/wsymbol_0001_sunny.png");
BufferedImage bufferedImage = ImageIO.read(url);
ImageIO.write(bufferedImage, "png", new FileOutputStream("/home/visruth/OutputImage.png"));// A file named OutputImage.png will be created in the location /home/visruth/
} catch(Exception e) {
e.printStackTrace();
}