用Javascript进行base64编码,在高版本的IE浏览器(IE9以上版本),和firefox,chrome浏览器里是非常方便的。这些浏览器的window对象中内置了base64的编码和解码方法。
var base64String = window.btoa(string) ;//编码
var string = window.atob(base64string) ;//解码
注意:这对编码解码方法只是支持ascii字符集编码,不支持unicode字符集。也就是如果给window.btoa方法的参数是汉字的话,该方法就会报错。所以建议:如果参数可能是unicode字符的话,同意用下面的自定义的base64编码办法会好一点儿。
既然浏览器自带的base64编码不支持unicode字符集的字符,那么我们就想办法让他支持。办法就是先把unicode字符集编码,编码的结果就是只含有utf-8码。看下面的方法。至于为什么要使用encodeURIComponent,escape,请看这里
1 function utf8_to_b64(utf8){ 2 return window.btoa(encodeURIComponent(escape(utf8))); 3 } 4 function b64_to_utf8(b64){ 5 return unescape(decodeURIComponent(window.atob(b64))); 6 }
不幸的是,低版本的ie浏览器里没有这么一对编码/解码的方法。怎么办?自己提供,看下面的代码:
1 (function(){ 2 if(window.atob) 3 return; 4 else{ 5 var Base64 = window.Base64 || { 6 /* private property*/ 7 _keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=", 8 9 /* public method for encoding */ 10 encode : function (input) { 11 var output = ""; 12 var chr1, chr2, chr3, enc1, enc2, enc3, enc4; 13 var i = 0; 14 15 input = Base64._utf8_encode(input); 16 17 while (i < input.length) { 18 19 chr1 = input.charCodeAt(i++); 20 chr2 = input.charCodeAt(i++); 21 chr3 = input.charCodeAt(i++); 22 23 enc1 = chr1 >> 2; 24 enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); 25 enc3 = ((chr2 & 15) << 2) | (chr3 >> 6); 26 enc4 = chr3 & 63; 27 28 if (isNaN(chr2)) { 29 enc3 = enc4 = 64; 30 } else if (isNaN(chr3)) { 31 enc4 = 64; 32 } 33 34 output = output + 35 Base64._keyStr.charAt(enc1) + Base64._keyStr.charAt(enc2) + 36 Base64._keyStr.charAt(enc3) + Base64._keyStr.charAt(enc4); 37 38 } 39 40 return output; 41 }, 42 43 /* public method for decoding */ 44 decode : function (input) { 45 var output = ""; 46 var chr1, chr2, chr3; 47 var enc1, enc2, enc3, enc4; 48 var i = 0; 49 50 input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ""); 51 52 while (i < input.length) { 53 54 enc1 = Base64._keyStr.indexOf(input.charAt(i++)); 55 enc2 = Base64._keyStr.indexOf(input.charAt(i++)); 56 enc3 = Base64._keyStr.indexOf(input.charAt(i++)); 57 enc4 = Base64._keyStr.indexOf(input.charAt(i++)); 58 59 chr1 = (enc1 << 2) | (enc2 >> 4); 60 chr2 = ((enc2 & 15) << 4) | (enc3 >> 2); 61 chr3 = ((enc3 & 3) << 6) | enc4; 62 63 output = output + String.fromCharCode(chr1); 64 65 if (enc3 != 64) { 66 output = output + String.fromCharCode(chr2); 67 } 68 if (enc4 != 64) { 69 output = output + String.fromCharCode(chr3); 70 } 71 72 } 73 74 output = Base64._utf8_decode(output); 75 76 return output; 77 78 }, 79 80 /* private method for UTF-8 encoding */ 81 _utf8_encode : function (string) { 82 string = string.replace(/\r\n/g,"\n"); 83 var utftext = ""; 84 85 for (var n = 0; n < string.length; n++) { 86 87 var c = string.charCodeAt(n); 88 89 if (c < 128) { 90 utftext += String.fromCharCode(c); 91 } 92 else if((c > 127) && (c < 2048)) { 93 utftext += String.fromCharCode((c >> 6) | 192); 94 utftext += String.fromCharCode((c & 63) | 128); 95 } 96 else { 97 utftext += String.fromCharCode((c >> 12) | 224); 98 utftext += String.fromCharCode(((c >> 6) & 63) | 128); 99 utftext += String.fromCharCode((c & 63) | 128); 100 } 101 102 } 103 104 return utftext; 105 }, 106 107 /* private method for UTF-8 decoding */ 108 _utf8_decode : function (utftext) { 109 var string = ""; 110 var i = 0; 111 var c = c1 = c2 = 0; 112 113 while ( i < utftext.length ) { 114 115 c = utftext.charCodeAt(i); 116 117 if (c < 128) { 118 string += String.fromCharCode(c); 119 i++; 120 } 121 else if((c > 191) && (c < 224)) { 122 c2 = utftext.charCodeAt(i+1); 123 string += String.fromCharCode(((c & 31) << 6) | (c2 & 63)); 124 i += 2; 125 } 126 else { 127 c2 = utftext.charCodeAt(i+1); 128 c3 = utftext.charCodeAt(i+2); 129 string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63)); 130 i += 3; 131 } 132 133 } 134 return string; 135 } 136 } 137 window.Base64 = Base64; 138 } 139 })();
这样,就可以为一些浏览器里不支持base64编码浏览器提供一种方法。base64编码的代码摘自这里。
A pure heart will go far.