Java - DataOutputStream的writeLong方法并写入十六进制

发布于 2024-08-04 06:20:57 字数 256 浏览 6 评论 0原文

目前,我有:

outByte.writeInt(0x49492a00); 
outByte.writeInt(0x08000000);

但我希望能够将所有这些写在同一行上。但是:

outByte.writeLong(0x49492a0008000000)

在 Eclipse 中带有红色下划线,因此不正确。是否可以使用 writeLong() 将这两行写成一行?

Currently, I have:

outByte.writeInt(0x49492a00); 
outByte.writeInt(0x08000000);

But i want to be able to write all of that on the same line. But:

outByte.writeLong(0x49492a0008000000)

is underlined red in Eclipse, and therefore incorrect. Is it possible to write those two lines all in one with writeLong()?

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

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

发布评论

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

评论(1

作妖 2024-08-11 06:20:58

要在源代码中使用 long 文字,您需要将 lL 附加到常量,如下所示:

outByte.writeLong(0x49492a0008000000L)

To use a long literal in your source code, you will need to append l or L to the constant like this:

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