首页 > 其他 > 详细

从BufferedImage到InputStream,实现绘图后进行下载(生成二维码图片并下载)

时间:2014-08-23 15:19:40      阅读:1471      评论:0      收藏:0      [点我收藏+]
@SuppressWarnings("resource")
public void download() throws Exception{
    String filename = "qrcode.png";
    String content = "content";
    BufferedImage image = QRcodeUtils.encode(content, size);
    
    //BufferedImage 转 InputStream
    ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
    ImageOutputStream imageOutput = ImageIO.createImageOutputStream(byteArrayOutputStream);
    ImageIO.write(image, "png", imageOutput);
    InputStream inputStream = new ByteArrayInputStream(byteArrayOutputStream.toByteArray());
    long length = imageOutput.length();
    
    //设置response
    HttpServletResponse response = this.getResponse();
    response.setContentType("application/x-msdownload");
    response.setContentLength((int)length);
    response.setHeader("Content-Disposition","attachment;filename="+new String(filename.getBytes("gbk"),"iso-8859-1"));
    
    //输出流
    byte[] bytes = new byte[1024];
    OutputStream outputStream = response.getOutputStream();
    long count = 0;
    while(count < length){
        int len = inputStream.read(bytes, 0, 1024);
        count +=len;
        outputStream.write(bytes, 0, len);
    }
    outputStream.flush();
}

 

从BufferedImage到InputStream,实现绘图后进行下载(生成二维码图片并下载)

原文:http://www.cnblogs.com/rubekid/p/3931044.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!