Js base64算法实现(完美解决中文乱码)
2021-02-16 03:20
阅读:454
YPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
标签:fda amp HERE 解决 and dad 中文乱码 remove his
JavaScript 的 BASE64 算法
var BASE64={ enKey: ‘ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/‘, deKey: new Array( -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1 ), encode: function(src){ //用一个数组来存放编码后的字符,效率比用字符串相加高很多。 var str=new Array(); var ch1, ch2, ch3; var pos=0; //每三个字符进行编码。 while(pos+3>2), this.enKey.charAt(((ch1>4))&0x3f)); str.push(this.enKey.charAt(((ch2>6))&0x3f), this.enKey.charAt(ch3&0x3f)); } //给剩下的字符进行编码。 if(pos>2)); if(pos >4))&0x3f)); str.push(this.enKey.charAt(ch2>4), (ch2>2), (ch3>4), (ch2>2))); }else{ str.push(String.fromCharCode((ch1>4))); } } //组合各解码后的字符,连成一个字符串。 return str.join(‘‘); } };
使用方法:
var str=‘hello world!‘; var enstr=BASE64.encode(str); alert(enstr); var destr=BASE64.decode(enstr); alert(destr);
收藏的Base64编码/解码.在一个外国网站看到的.不过对中文不支持.
自己加入了escape,.对中文也支持了.
先用escape()对中文进行编码.然后再进行base64编码.
解码时,再加入()对中文进行解码.
New Document
我用了上面的进行了操作,但是用java来base64后的字符串传到前台后,一直解决不了中文乱码的问题,经过不懈的努力,终于搞定了。解决了javascript中base64解码(decode)的中文乱码问题
直接上页面,复制到网页直接可以用
New Document
下一篇:JavaScript?
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:Js base64算法实现(完美解决中文乱码)
文章链接:http://soscw.com/index.php/essay/55911.html
文章标题:Js base64算法实现(完美解决中文乱码)
文章链接:http://soscw.com/index.php/essay/55911.html
评论
亲,登录后才可以留言!