admin管理员组文章数量:1344229
How do I convert an array of bytes into ArrayBuffer
in Nashorn? I am trying to insert binary data into a pure JavaScript environment (i.e., it doesn't have access to Java.from
or Java.to
) and so would like to create an instance out an array of bytes.
How do I convert an array of bytes into ArrayBuffer
in Nashorn? I am trying to insert binary data into a pure JavaScript environment (i.e., it doesn't have access to Java.from
or Java.to
) and so would like to create an instance out an array of bytes.
2 Answers
Reset to default 6Looks like I was going about this the wrong way. It made more sense to convert it into Uint8Array
since what I'm sending in is an array of bytes.
I created the following function:
function byteToUint8Array(byteArray) {
var uint8Array = new Uint8Array(byteArray.length);
for(var i = 0; i < uint8Array.length; i++) {
uint8Array[i] = byteArray[i];
}
return uint8Array;
}
This will convert an array of bytes (so byteArray
is actually of type byte[]
) into a Uint8Array
.
I think you're right about using a Uint8Array
, but this code might be preferable:
function byteToUint8Array(byteArray) {
var uint8Array = new Uint8Array(byteArray.length);
uint8Array.set(Java.from(byteArray));
return uint8Array;
}
Also, if you really need an ArrayBuffer
you can use uint8Array.buffer
.
本文标签: javascriptConverting byte to ArrayBuffer in NashornStack Overflow
版权声明:本文标题:javascript - Converting byte[] to ArrayBuffer in Nashorn - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743705172a2524991.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论