将int转换为无符号短java

发布于 2024-11-19 00:47:15 字数 218 浏览 4 评论 0原文

我用 java 编写了一个 .obj 解析器来对 iPhone 上的 3D 对象进行建模。我想将数据导出为二进制文件,该文件必须尽可能小。我有很多适合无符号短整型的索引,但它们在 java 中表示为 int 。

我想在将数据写入文件之前使用 ByteBuffer 类进行转换。我想我必须在将字节推入 ByteBuffer 之前对其进行操作,但我不知道该怎么做。

如果您能帮助我,请提前致谢。

I have written a .obj parser in java to modelize 3D objects on iPhone. I would like to export the data as a binary file, which must be as small as possible. I have plenty of indices that would fit a unsigned short, but they are represented as int in java.

I would like to use the ByteBuffer class to do the conversion just before writing the data in a file. I suppose I will have to manipulate bytes before pushing them into the ByteBuffer but I have no idea how to do so.

Thank you in advance if you can help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

音盲 2024-11-26 00:47:15

在 Java 中,无符号短整型可以表示为 char。只需将 int 转换为 char 并在 ByteBuffer 上使用 putChar() 即可。

myBuffer.putChar((char) my16BitInt);

In Java, an unsigned short can be represented as a char. Just cast the int to char and use putChar() on the ByteBuffer.

myBuffer.putChar((char) my16BitInt);
好菇凉咱不稀罕他 2024-11-26 00:47:15
short toUint16(int i)
{
    return (short) i;
}

int toUint32(short s)
{
    return s & 0xFFFF;
}
short toUint16(int i)
{
    return (short) i;
}

int toUint32(short s)
{
    return s & 0xFFFF;
}
最美不过初阳 2024-11-26 00:47:15

您可以使用以下命令从整数中提取单个字节

int i;
byte b1 = i & 0xFF;
byte b2 = (i >> 8) & 0xFF;

You can extract single bytes from your integers with

int i;
byte b1 = i & 0xFF;
byte b2 = (i >> 8) & 0xFF;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文