JSON中的二进制数据

时间:2018-11-17 18:04:07

标签: javascript json typed-arrays

我正在网站的客户端上使用javascript代码来解析混合的字符串/原始数据,这些数据是通过JSON对象通过http POST响应接收的。

该JSON对象的某些字段是文本/数字,但是最大和最重要的字段(从性能角度而言)是由原始数据(八位字节)组成的 raw 字段。

如何将该字段强制转换为Float64Array()对象,以便我可以在考虑性能的情况下使用纯现代javascript解析数据?

2 个答案:

答案 0 :(得分:1)

对于支持该功能的浏览器,最好的选择是提高原始性能Encoding API。但是,我找不到任何方法可以使API支持将原始二进制文件混入较大的JSON对象中。

您可能还会发现与TextEncoder有关的答案很有帮助,尽管由于编码问题,我无法找到任何将其直接应用于这种情况的方法。

因此,对于这些警告,到目前为止,对于这种特殊情况,我能找到的最佳方法是根据此Google blog post手动将字符串手动读取到ArrayBuffer中,然后将其视为FloatArray。 :

function stringToFloat64Array(str) {
  var buffer = new ArrayBuffer(str.length); // 1 byte per char
  var view = new Uint8Array(buffer);
  for (var i=str.length-1; i>=0; i--) {
    view[i] = str.charCodeAt(i);
  }
  return new Float64Array(buffer, 0, str.length / 8); // 8 bytes per float
}

var json = {
   "somenumber": 3,
   "raw": "\x66\x66\x66\x66\x66\x66\x14\x40\x00\x00\x00\x00\x00\x00\x00\xc0"
}; // From JSON.parse
var floatArray = stringToFloat64Array(json.raw);
console.log(floatArray); // Float64Array [ 5.1, -2 ]

答案 1 :(得分:0)

您可以检查stackoverflow answer可能对您有帮助。 或者尝试通过base64传递原始数据,例如在php中编码并解码js:-

/ Create Base64 Object
var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(e){var t="";var n,r,i,s,o,u,a;var f=0;e=Base64._utf8_encode(e);while(f<e.length){n=e.charCodeAt(f++);r=e.charCodeAt(f++);i=e.charCodeAt(f++);s=n>>2;o=(n&3)<<4|r>>4;u=(r&15)<<2|i>>6;a=i&63;if(isNaN(r)){u=a=64}else if(isNaN(i)){a=64}t=t+this._keyStr.charAt(s)+this._keyStr.charAt(o)+this._keyStr.charAt(u)+this._keyStr.charAt(a)}return t},decode:function(e){var t="";var n,r,i;var s,o,u,a;var f=0;e=e.replace(/[^A-Za-z0-9+/=]/g,"");while(f<e.length){s=this._keyStr.indexOf(e.charAt(f++));o=this._keyStr.indexOf(e.charAt(f++));u=this._keyStr.indexOf(e.charAt(f++));a=this._keyStr.indexOf(e.charAt(f++));n=s<<2|o>>4;r=(o&15)<<4|u>>2;i=(u&3)<<6|a;t=t+String.fromCharCode(n);if(u!=64){t=t+String.fromCharCode(r)}if(a!=64){t=t+String.fromCharCode(i)}}t=Base64._utf8_decode(t);return t},_utf8_encode:function(e){e=e.replace(/rn/g,"n");var t="";for(var n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r<128){t+=String.fromCharCode(r)}else if(r>127&&r<2048){t+=String.fromCharCode(r>>6|192);t+=String.fromCharCode(r&63|128)}else{t+=String.fromCharCode(r>>12|224);t+=String.fromCharCode(r>>6&63|128);t+=String.fromCharCode(r&63|128)}}return t},_utf8_decode:function(e){var t="";var n=0;var r=c1=c2=0;while(n<e.length){r=e.charCodeAt(n);if(r<128){t+=String.fromCharCode(r);n++}else if(r>191&&r<224){c2=e.charCodeAt(n+1);t+=String.fromCharCode((r&31)<<6|c2&63);n+=2}else{c2=e.charCodeAt(n+1);c3=e.charCodeAt(n+2);t+=String.fromCharCode((r&15)<<12|(c2&63)<<6|c3&63);n+=3}}return t}}

// Define the string
var string = 'Hello World!';

// Encode the String
var encodedString = Base64.encode(string);
console.log(encodedString); // Outputs: "SGVsbG8gV29ybGQh"

// Decode the String
var decodedString = Base64.decode(encodedString);
console.log(decodedString); // Outputs: "Hello World!"

如果它不起作用,请告诉我,我将创建此功能的一个示例 快乐编码