码迷,mamicode.com
首页 > 其他好文 > 详细

Base64String转为图片并保存

时间:2021-03-18 13:59:41      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:div   put   read   tac   static   stat   type   write   turn   

 /**
     *
     * @param BASE64str bas64字符串
     * @param path 存储地址
     * @return 存储地址
     */
    public static String BASE64CodeToBeImage(String BASE64str,String path){
        BufferedImage image = null;
        byte[] imageByte = null;
        try {
            imageByte = DatatypeConverter.parseBase64Binary(BASE64str);
            ByteArrayInputStream bis = new ByteArrayInputStream(imageByte);
            image = ImageIO.read(new ByteArrayInputStream(imageByte));
            bis.close();
            File outputfile = new File(path);
            ImageIO.write(image, "jpg", outputfile);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

  

Base64String转为图片并保存

标签:div   put   read   tac   static   stat   type   write   turn   

原文地址:https://www.cnblogs.com/ycq-qiang/p/14547784.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!