Matlab中是否有RFC4648(“Base16、Base32 和 Base64 数据编码”)的任何实现?
问问题
771 次
1 回答
3
在 MATLAB 中,您可以轻松使用嵌入式Java 功能。MATLAB 附带 Java 类路径上可用的Apache Commons Codec库。所以你可以这样做:
str = 'http://stackoverflow.com/q/11659710/';
encoder = org.apache.commons.codec.binary.Base64();
result = char(encoder.encode(str-0))';
输出:
>> result
result =
aHR0cDovL3N0YWNrb3ZlcmZsb3cuY29tL3EvMTE2NTk3MTAv
于 2012-07-25T22:47:59.553 回答