zoukankan      html  css  js  c++  java
  • java的图片和Base64编码相互转换

    1 需要导入的jar包:sun.misc.BASE64Decoder.jar

    2 图片转换为base64编码:

    /**
    	 * 将图片转换成Base64编码
    	 * 
    	 * @param imgFile
    	 *            待处理图片
    	 * @return
    	 */
    	public static String getImgStr(String imgFile) {
    		// 将图片文件转化为字节数组字符串,并对其进行Base64编码处理
    		File file=new File(imgFile);
    		InputStream in = null;
    		byte[] data = null;
    		// 读取图片字节数组
    		try {
    			in = new FileInputStream(file);
    			data = new byte[in.available()];
    			in.read(data);
    			in.close();
    			if(data!=null&&data.length>0){
    				//CommonUtil.fileDelete(file);  //删除图片
    			}
    		} catch (IOException e) {
    			e.printStackTrace();
    		}
    		
    		BASE64Encoder encoder = new BASE64Encoder();
    		return encoder.encode(data);
    	}

    3 将base64编码转换成图片

    /**
    	 * @Description: 将base64编码字符串转换为图片
    	 * @Author: 
    	 * @CreateTime: 
    	 * @param imgStr base64编码字符串
    	 * @param path 图片路径-具体到文件
    	 * @return
    	*/ 
        public static boolean GenerateImage(String imgStr,String imgFilePath)  
        {   //对字节数组字符串进行Base64解码并生成图片  
            if (imgStr == null) //图像数据为空  
                return false;  
            BASE64Decoder decoder = new BASE64Decoder();  
            try   
            {  
                //Base64解码  
                byte[] b = decoder.decodeBuffer(imgStr);  
                for(int i=0;i<b.length;++i)  
                {  
                    if(b[i]<0)  
                    {//调整异常数据  
                        b[i]+=256;  
                    }  
                }  
                //生成jpeg图片  
                OutputStream out = new FileOutputStream(imgFilePath);      
                out.write(b);  
                out.flush();  
                out.close();  
                return true;  
            }   
            catch (Exception e)   
            {  
                return false;  
            }  
        }  
    	

  • 相关阅读:
    nyoj-116-士兵杀敌(二)
    nyoj-520-最大素因子
    nyoj-333-mdd的烦恼
    nyoj-172-小珂的图表
    nyoj-332-SPY
    nyoj-49-开心的小明
    nyoj-456-邮票分你一半
    nyoj-325-zb的生日
    nyoj-372-巧克力
    vwware虚拟机无法连接外网
  • 原文地址:https://www.cnblogs.com/t0404/p/10290957.html
Copyright © 2011-2022 走看看