zoukankan      html  css  js  c++  java
  • java字符串和图片相互转换

    package com.thinkgem.jeesite.modules.api.wechat;
    
    import sun.misc.BASE64Decoder;
    import sun.misc.BASE64Encoder;
    
    import java.io.*;
    /**
     * 字符串和图片相互转换
     * @author zhouhe
     * @date 2020/7/3 17:23
     */
    public class ImgToStr {
        /**
         * 字符串转图片
         * @param imgStr --->图片字符串
         * @param filename    --->图片名
         * @return
         */
        public static boolean generateImage(String imgStr, String filename) {
    
            if (imgStr == null) {
                return false;
            }
            BASE64Decoder decoder = new BASE64Decoder();
            try {
                // 解密
                byte[] b = decoder.decodeBuffer(imgStr);
                // 处理数据
                for(int i = 0; i < b.length; ++i) {
                    if (b[i] < 0) {
                        b[i] += 256;
                    }
                }
                OutputStream out = new FileOutputStream("D://"+filename);
                out.write(b);
                out.flush();
                out.close();
                return true;
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            return false;
    
        }
    
        /**
         * 图片转字符串
         * @param filePath    --->文件路径
         * @return
         */
        public static String getImageStr(String filePath) {
            InputStream inputStream = null;
            byte[] data = null;
            try {
                inputStream = new FileInputStream(filePath);
                data = new byte[inputStream.available()];
                inputStream.read(data);
                inputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            // 加密
            BASE64Encoder encoder = new BASE64Encoder();
            return encoder.encode(data);
        }
    
        /*
         * 测试代码
         */
        public static void main(String[] args) {
            String imageStr = getImageStr("D:\222.png");
            System.out.println(imageStr);
            System.out.println(imageStr.length());
            boolean generateImage = generateImage(imageStr, "223.png");
            System.out.println(generateImage);
        }
    }
  • 相关阅读:
    几种开源SIP协议栈对比OPAL,VOCAL,sipX,ReSIProcate,oSIP
    google开源的C++性能分析工具
    常用SNS开源系统比较
    推荐20个开源项目托管网站
    web2.0的几个开源项目
    开源src镜像
    Niagara解决设备连接应用的软件框架平台技术。
    Signing key has not been configured
    Mybatis 简单的CRUD 基于XML文件配置
    HDU4451Dressing(计数)
  • 原文地址:https://www.cnblogs.com/zhouheblog/p/13231614.html
Copyright © 2011-2022 走看看