我正在尝试从使用Java创建的二进制文件中读取javascript中的浮点数。
使用DataOutputStream在Java中创建文件:
DataOutputStream dos = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(file)));
dos.writeFloat(-222);
dos.writeFloat(222000);
dos.writeFloat(130.329f);
dos.flush();
dos.close();
该文件由http请求检索并读取如下:
var client = new XMLHttpRequest();
client.addEventListener("load", dataLoaded);
client.open("GET", "/ajax-requests.php?data=true", true);
client.responseType = "arraybuffer";
client.send();
dataLoaded函数:
function dataLoaded () {
console.log("Float32Array: " + new Float32Array(this.respnse));
}
输出:
Float32Array: 3.3994099446055737e-41,1.8766110561523948e-38,0.00020218738063704222
期待:
Float32Array: -222,222000,130.329
该文件是用php发送的:
if(isset($_GET['data'])) {
$file_path = "data/filename.ext";
if (file_exists($file_path)) {
if(false !== ($handler = fopen($file_path, 'r'))) {
header("Content-Type: application/octet-stream");
header("Content-Length: " . filesize($file_path));
readfile($file_path);
}
exit;
}
echo "<h1>Content error</h1><p>The file does not exist!</p>";
}
似乎转换中有一个缺陷,但我无法弄清楚在哪里。
更新
问题就像Sean Van Gorder所说的那样,这是一个不同的结尾。为了解决这个问题,我使用DataView来读取arrayBuffer(因为文件将在java和javascript中读取,这是最好的闷热)
var dataView = new DataView(arrayBuffer);
console.log("dataView: " + dataView.getFloat32(0, false));
console.log("dataView: " + dataView.getFloat32(4, false));
console.log("dataView: " + dataView.getFloat32(8, false));
输出:
dataView: -222
dataView: 222000
dataView: 130.32899475097656
答案 0 :(得分:1)
您的字节顺序不匹配。 DataOutputStream以big-endian写入,但Float32Array通常以little-endian(取决于硬件)读取。您必须更改the Java side或the Javascript side才能匹配。