1

我正在尝试通过网络将浮点数从 Windows 上用 c# 编写的程序发送到使用 flatbuffers 用 java 编写的 android 应用程序。

从 android 应用程序中接收到的字节,使用 java.nio.ByteBuffer.wrap 构建缓冲区。从此缓冲区中反序列化 Example 对象。然而,这会导致每个浮点数都设置为 0。

在下面的示例中显示了此行为。

为什么“example2”返回值0.0而不是20.0

这是我使用的架构:

// Example IDL file for our monster's schema.
namespace MyGame.Sample;
table Example {
  myFloat:float;
}
root_type Example;

这是显示行为的java代码:

//The float
float myFloat = 20.0f;

FlatBufferBuilder builder = new FlatBufferBuilder(0);

//Build the example
Example.startExample(builder);
Example.addMyFloat(builder, myFloat);
int exampleInt = Example.endExample(builder);

builder.finish(exampleInt);

java.nio.ByteBuffer buf = builder.dataBuffer();

Example example = Example.getRootAsExample(buf);

System.out.println("1: Myfloat: " + example.myFloat());

byte[] bytesBuf = buf.array();
Example example2 = Example.getRootAsExample(java.nio.ByteBuffer.wrap(bytesBuf));

System.out.println("2: Myfloat: " + example2.myFloat());

输出:

System.out: 1: Myfloat: 20.0
System.out: 2: Myfloat: 0.0
4

1 回答 1

1

array() 获取原始的 underlyimg 缓冲区,其中包含可能不是 0 的偏移量处的 FlatBuffer。相反,FlatBufferBuilder 中有一个方法(它的名字现在我不知道),它将为您提供缓冲区。

于 2016-05-04T11:14:27.910 回答