Java - DataOutputStream的writeLong方法并写入十六进制
目前,我有:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在源代码中使用
long
文字,您需要将l
或L
附加到常量,如下所示:To use a
long
literal in your source code, you will need to appendl
orL
to the constant like this: