javascript的base64操作

本文介绍了一种在JavaScript中实现Base64编码和解码的方法,通过两个函数b64EncodeUnicode和b64DecodeUnicode实现对Unicode字符串的Base64编码和解码。示例代码展示了如何使用这两个函数进行转换。
摘要由CSDN通过智能技术生成

有的时候我们也会遇到在js里面进行base64的操作。

function b64EncodeUnicode(str) {
    // first we use encodeURIComponent to get percent-encoded UTF-8,
    // then we convert the percent encodings into raw bytes which
    // can be fed into btoa.
    return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g,
        function toSolidBytes(match, p1) {
            return String.fromCharCode('0x' + p1);
    }));
}


function b64DecodeUnicode(str) {
    // Going backwards: from bytestream, to percent-encoding, to original string.
    return decodeURIComponent(atob(str).split('').map(function(c) {
        return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
    }).join(''));
}

 测试

var hello = '/usr/local/test/hello.txt';
console.log('original:%s',hello);
var b64EncodeUnicodeStr = b64EncodeUnicode(hello);
console.log('b64EncodeUnicode:%s',b64EncodeUnicodeStr);
console.log('b64DecodeUnicode:%s',b64DecodeUnicode(b64EncodeUnicodeStr));

// output:
// original:/usr/local/test/hello.txt
// untitled.html:50 b64EncodeUnicode:L3Vzci9sb2NhbC90ZXN0L2hlbGxvLnR4dA==
// untitled.html:51 b64DecodeUnicode:/usr/local/test/hello.txt

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值