从Java byte [] - > Base64 - > Javascript ArrayBuffer - > Base64 - > Byte []

Fas*_*619 4 javascript java audio

我在将数据从Java发送到Javascript时遇到了麻烦,反之亦然.

到目前为止我试过这个:

//a function I found online I use it to convert the decoded version of the java base64 byte[] to an ArrayBuffer
    function str2ab(str) {
      var buf = new ArrayBuffer(str.length*2); // 2 bytes for each char
      var bufView = new Uint16Array(buf);
      for (var i=0, strLen=str.length; i<strLen; i++) {
        bufView[i] = str.charCodeAt(i);
      }
      return buf;
    }

function ab2str(buf) {
  return String.fromCharCode.apply(null, new Uint16Array(buf));//retuns a different value than what I put into the buffer.
}
Run Code Online (Sandbox Code Playgroud)

我真的不知道怎么回事这个想法?

car*_*ter 6

Java的

运用 import com.sun.org.apache.xml.internal.security.utils.Base64;

byte[] b = new byte[] { 12, 3, 4, 5, 12 , 34, 100 };
String encoded = Base64.encode(b);
Run Code Online (Sandbox Code Playgroud)

生产:

"DAMEBQwiZA=="
Run Code Online (Sandbox Code Playgroud)

JavaScript的

使用atobbtoa

var stringToByteArray = function(str) {
    var bytes = [];
    for (var i = 0; i < str.length; ++i) {
        bytes.push(str.charCodeAt(i));
    }
    return bytes;
};
var decoded = stringToByteArray(atob("DAMEBQwiZA=="));
Run Code Online (Sandbox Code Playgroud)

生产:

[ 12, 3, 4, 5, 12 , 34, 100 ]
Run Code Online (Sandbox Code Playgroud)

注意:如果您在NodeJS中执行此操作,请查看atob包.