用base64加解密解决用xml传输图片或附件生成时出现乱码的问题

Base64是网络上最常见的用于传输8Bit字节代码的编码方式之一,在发送电子邮件时,服务器认证的用户名和密码需要用Base64编码,附件也需要用Base64编码。
下面简单介绍Base64算法的原理,由于代码太长就不在此贴出
Base64要求把每三个8Bit的字节转换为四个6Bit的字节(3*8 = 4*6 = 24),然后把6Bit再添两位高位0,组成四个8Bit的字节,也就是说,转换后的字符串理论上将要比原来的长1/3。
转换后,我们用一个码表来得到我们想要的字符串(也就是最终的Base64编码),这个表是这样的:
0 A 17 R 34 i 51 z
1 B 18 S 35 j 52 0
2 C 19 T 36 k 53 1
3 D 20 U 37 l 54 2
4 E 21 V 38 m 55 3
5 F 22 W 39 n 56 4
6 G 23 X 40 o 57 5
7 H 24 Y 41 p 58 6
8 I 25 Z 42 q 59 7
9 J 26 a 43 r 60 8
10 K 27 b 44 s 61 9
11 L 28 c 45 t 62 +
12 M 29 d 46 u 63 /
13 N 30 e 47 v
14 O 31 f 48 w (pad) =
15 P 32 g 49 x
16 Q 33 h 50 y
原文的字节最后不够3个的地方用0来补足,转换时Base64编码用=号来代替。这就是为什么有些Base64编码会以一个或两个等号结束的原因,但等号最多只有两个。
举一个例子,abc经过Base64编码以后的结果是YWJj.
 
  1.          private static final String CHARSET_NAME = "ISO8859_1";
  2.     public static byte[] base64Decode(String s) throws IOException,
  3.             javax.mail.MessagingException {
  4.         if (s == null || s.length() == 0) {
  5.             return null;
  6.         }
  7.         ByteArrayInputStream bais = new ByteArrayInputStream(s
  8.                 .getBytes(CHARSET_NAME));
  9.         InputStream is = MimeUtility.decode(bais, "base64");
  10.         ByteArrayOutputStream out = new ByteArrayOutputStream();
  11.         int ch = -1;
  12.         while ((ch = is.read()) != -1) {
  13.             out.write(ch);
  14.         }
  15.         out.flush();
  16.         bais.close();
  17.         return out.toByteArray();
  18.     }
  19.     public static String base64Encode(byte[] buf) throws IOException,
  20.             javax.mail.MessagingException {
  21.         if (buf == null || buf.length == 0) {
  22.             return "";
  23.         }
  24.         InputStream is = new ByteArrayInputStream(buf);
  25.         BufferedInputStream bis = new BufferedInputStream(is);
  26.         ByteArrayOutputStream baos = new ByteArrayOutputStream();
  27.         OutputStream os = javax.mail.internet.MimeUtility
  28.                 .encode(baos, "base64");
  29.         int chr = -1;
  30.         while ((chr = bis.read()) != -1) {
  31.             os.write(chr);
  32.         }
  33.         bis.close();
  34.         baos.close();
  35.         return new String(baos.toByteArray(), CHARSET_NAME);
  36.     }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值