我有一个基于给定参数生成图表的servlet。
我需要能够将这些图表作为常规图像保存在服务器中:例如myImage.png。
使用如下代码创建这些图表:
http://127.0.0.1:8080/servlet/graficadorPS?type=area&val1=32.0|32.0|38.0|92.0&cat1=y|y|y|y&eje1=D|I|S|C&titulo=HF&ancho=130&alto=260
所以,图像"本身"在任何地方都不存在。
有办法吗?
答案 0 :(得分:1)
示例代码
public static void main(String[] args) throws NumberFormatException, IOException, ParseException {
URL url = new URL("http://cdn.portableapps.com/GoogleChromePortable_128.png");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
InputStream is = conn.getInputStream();
BufferedImage image = ImageIO.read(is);
OutputStream os = new FileOutputStream(new File("output.png"));
ImageIO.write(image, "png", os);
}