Base64.java
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:5k
源码类别:

J2ME

开发平台:

Java

  1. import java.io.*;
  2. public class Base64 {
  3.     protected static final char[] alphabet = {
  4. 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', // 0 to 7
  5. 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', // 8 to 15
  6. 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', // 16 to 23
  7. 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', // 24 to 31
  8. 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', // 32 to 39
  9. 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', // 40 to 47
  10. 'w', 'x', 'y', 'z', '0', '1', '2', '3', // 48 to 55
  11. '4', '5', '6', '7', '8', '9', '+', '/'  // 56 to 63
  12.     };
  13.     protected static final int[] decodeTable = {
  14. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, // 0 to 9
  15. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, // 10 to 19
  16. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, // 20 to 29
  17. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, // 30 to 39
  18. -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, // 40 to 49
  19. 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, // 50 to 59
  20. -1, -1, -1, -1, -1,  0,  1,  2,  3,  4, // 60 to 69
  21.  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, // 70 to 79
  22. 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, // 80 to 89
  23. 25, -1, -1, -1, -1, -1, -1, 26, 27, 28, // 90 to 99
  24. 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, // 100 to 109
  25. 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, // 110 to 119
  26. 49, 50, 51                              // 120 to 122
  27.     };
  28.     
  29.     public static String encodeToString(String s) {
  30.       char[] encoded = encode(s);
  31.       StringBuffer encodedSB = new StringBuffer();
  32.       for (int i=0; i<encoded.length; i++) {
  33.        encodedSB.append(encoded[i]);
  34.       }
  35.       return encodedSB.toString();
  36.     }
  37.     public static char[] encode(String s) {
  38. return encode(s.getBytes());
  39.     }
  40.     public static char[] encode(byte[] bytes) {
  41. int sixbit;
  42. char[] output = new char[((bytes.length - 1) / 3 + 1) * 4];
  43. int outIndex = 0;
  44. int i = 0;
  45. while ((i + 3) <= bytes.length) {
  46.     sixbit = (bytes[i] & 0xFC) >> 2;
  47.     output[outIndex++] = alphabet[sixbit];
  48.     sixbit = ((bytes[i] & 0x3) << 4) + ((bytes[i + 1] & 0xF0) >> 4);
  49.     output[outIndex++] = alphabet[sixbit];
  50.     sixbit = ((bytes[i + 1] & 0xF) << 2) + ((bytes[i + 2] & 0xC0) >> 6);
  51.     output[outIndex++] = alphabet[sixbit];
  52.     sixbit = bytes[i + 2] & 0x3F;
  53.     output[outIndex++] = alphabet[sixbit];
  54.     i += 3;
  55. }
  56. if (bytes.length - i == 2) {
  57.     sixbit = (bytes[i] & 0xFC) >> 2;
  58.     output[outIndex++] = alphabet[sixbit];
  59.     sixbit = ((bytes[i] & 0x3) << 4) + ((bytes[i + 1] & 0xF0) >> 4);
  60.     output[outIndex++] = alphabet[sixbit];
  61.     sixbit = (bytes[i + 1] & 0xF) << 2;
  62.     output[outIndex++] = alphabet[sixbit];
  63.     output[outIndex++] = '=';
  64. } else if (bytes.length - i == 1) {
  65.     sixbit = (bytes[i] & 0xFC) >> 2;
  66.     output[outIndex++] = alphabet[sixbit];
  67.     sixbit = (bytes[i] & 0x3) << 4;
  68.     output[outIndex++] = alphabet[sixbit];
  69.     output[outIndex++] = '=';
  70.     output[outIndex++] = '=';
  71. }
  72. return output;
  73.     }
  74.     
  75.     public static String decodeToString(String encoded) {
  76.        byte[] decoded = decode(encoded);
  77.        StringBuffer decodedSB = new StringBuffer();
  78.        for (int i=0; i< decoded.length; i++) {        
  79.         decodedSB.append( (char)decoded[i]);
  80.        }       
  81.        return decodedSB.toString();
  82.     }
  83.     public static byte[] decode(String encoded) {
  84. byte[] decoded = null;
  85. int decodedLength = (encoded.length() / 4 * 3);
  86. int invalid = 0;
  87. if (encoded.length() % 4 != 0) {
  88.     System.err.println("It's not BASE64 encoded string.");
  89.     return null;
  90. }
  91. if (encoded.charAt(encoded.length() - 2) == '=') {
  92.     invalid = 2;
  93. } else if (encoded.charAt(encoded.length() - 1) == '=') {
  94.     invalid = 1;
  95. }
  96. decodedLength -= invalid;
  97. decoded = new byte[decodedLength];
  98. int i = 0, di = 0;
  99. int sixbit0, sixbit1, sixbit2, sixbit3;
  100. for (; i < encoded.length() - 4; i += 4) {
  101.     sixbit0 = decodeTable[encoded.charAt(i)];
  102.     sixbit1 = decodeTable[encoded.charAt(i + 1)];
  103.     sixbit2 = decodeTable[encoded.charAt(i + 2)];
  104.     sixbit3 = decodeTable[encoded.charAt(i + 3)];
  105.     decoded[di++] = (byte) ((sixbit0 << 2) + ((sixbit1 & 0x30) >> 4));
  106.     decoded[di++] = (byte) (((sixbit1 & 0xF) << 4) + ((sixbit2 & 0x3C) >> 2));
  107.     decoded[di++] = (byte) (((sixbit2 & 0x3) << 6) + sixbit3);
  108. }
  109. switch (invalid) {
  110. case 0 :
  111.     sixbit0 = decodeTable[encoded.charAt(i)];
  112.     sixbit1 = decodeTable[encoded.charAt(i + 1)];
  113.     sixbit2 = decodeTable[encoded.charAt(i + 2)];
  114.     sixbit3 = decodeTable[encoded.charAt(i + 3)];
  115.     decoded[di++] = (byte) ((sixbit0 << 2) + ((sixbit1 & 0x30) >> 4));
  116.     decoded[di++] = (byte) (((sixbit1 & 0xF) << 4) + ((sixbit2 & 0x3C) >> 2));
  117.     decoded[di++] = (byte) (((sixbit2 & 0x3) << 6) + sixbit3);
  118.     break;
  119. case 1 :
  120.     sixbit0 = decodeTable[encoded.charAt(i)];
  121.     sixbit1 = decodeTable[encoded.charAt(i + 1)];
  122.     sixbit2 = decodeTable[encoded.charAt(i + 2)];
  123.     decoded[di++] = (byte) ((sixbit0 << 2) + ((sixbit1 & 0x30) >> 4));
  124.     decoded[di++] = (byte) (((sixbit1 & 0xF) << 4) + ((sixbit2 & 0x3C) >> 2));
  125.     break;
  126. case 2 :
  127.     sixbit0 = decodeTable[encoded.charAt(i)];
  128.     sixbit1 = decodeTable[encoded.charAt(i + 1)];
  129.     decoded[di++] = (byte) ((sixbit0 << 2) + ((sixbit1 & 0x30) >> 4));
  130.     break;
  131. }
  132. return decoded;
  133.     }
  134.     static boolean bytesEquals(byte[] b1, byte[] b2) {
  135. if (b1.length != b2.length) {
  136.     return false;
  137. }
  138. for (int i = b1.length - 1; i >= 0; i--) {
  139.     if (b1[i] != b2[i]) {
  140. return false;
  141.     }
  142. }
  143. return true;
  144.     }
  145. }