JSON传输图片帮助类

1 篇文章 0 订阅

转载: http://blog.csdn.net/mashihao123/article/details/50429203

JSON传输图片帮助类

(为什么这样做,是因为图片,通过IO操作之后获取的是byte[]字节数组,而JSON传输用的是String,所以需要转换为String,但是直接转换的话会因为,字符的编码不同而导致,得不到最终的效果)

所以需要到由图片到String的帮助类
贴上代码

[java]  view plain  copy
  1. package org.helper;  
  2.   
  3. import java.io.FileInputStream;  
  4. import java.io.IOException;  
  5. import sun.misc.BASE64Decoder;  
  6. import sun.misc.BASE64Encoder;  
  7. /** 
  8.  * Description:用此类将图片转换为字符串,以便将图片封装为JSON进行传输 
  9.  * @author 河伯 
  10.  * @Date 2014-05-27 
  11.  * @version 1.0 
  12.  * */  
  13. public class ImgHelper {  
  14.       
  15.     /** 
  16.      * TODO:将byte数组以Base64方式编码为字符串 
  17.      * @param bytes 待编码的byte数组 
  18.      * @return 编码后的字符串 
  19.      * */  
  20.     public static String encode(byte[] bytes){  
  21.         return new BASE64Encoder().encode(bytes);  
  22.     }  
  23.       
  24.     /** 
  25.      * TODO:将以Base64方式编码的字符串解码为byte数组 
  26.      * @param encodeStr 待解码的字符串 
  27.      * @return 解码后的byte数组 
  28.      * @throws IOException  
  29.      * */  
  30.     public static byte[] decode(String encodeStr) throws IOException{  
  31.         byte[] bt = null;    
  32.         BASE64Decoder decoder = new BASE64Decoder();    
  33.         bt = decoder.decodeBuffer(encodeStr);  
  34.         return bt;  
  35.     }  
  36.       
  37.     /** 
  38.      * TODO:将两个byte数组连接起来后,返回连接后的Byte数组 
  39.      * @param front 拼接后在前面的数组 
  40.      * @param after 拼接后在后面的数组 
  41.      * @return 拼接后的数组 
  42.      * */  
  43.     public static byte[] connectBytes(byte[] front, byte[] after){  
  44.         byte[] result = new byte[front.length + after.length];  
  45.         System.arraycopy(front, 0, result, 0, after.length);  
  46.         System.arraycopy(after, 0, result, front.length, after.length);  
  47.         return result;  
  48.     }  
  49.       
  50.     /** 
  51.      * TODO:将图片以Base64方式编码为字符串 
  52.      * @param imgUrl 图片的绝对路径(例如:D:\\jsontest\\abc.jpg) 
  53.      * @return 编码后的字符串 
  54.      * @throws IOException  
  55.      * */  
  56.     public static String encodeImage(String imgUrl) throws IOException{  
  57.         FileInputStream fis = new FileInputStream(imgUrl);  
  58.         byte[] rs = new byte[fis.available()];  
  59.         fis.read(rs);  
  60.         fis.close();  
  61.         return encode(rs);  
  62.     }  
  63.       
  64.     /** 
  65.      * @param args 
  66.      */  
  67.     public static void main(String[] args) {  
  68.         String str;  
  69.         try {  
  70.             str = encodeImage("E:\\yunifang_img\\1.jpg");  
  71.             System.out.println(str);  
  72.         } catch (IOException e) {  
  73.             e.printStackTrace();  
  74.         }  
  75.     }  
  76. }  


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值