如何在 Java 中将短格式打印为无符号短格式
我有一个 Short 数组,其值范围在 0 到 Short 的最大值之间。我缩放数据(将其显示为 TYPE_USHORT),以便生成的短值范围在 0 到 65535 之间。我需要打印一些缩放后的值,但不知道如何打印。数据位于数组和 BufferedImage 中。
I have an array of short whose values range between 0 and the maximum value of a short. I scale the data (to display it as TYPE_USHORT) so that the resulting short values range between 0 and 65535. I need to print some of the scaled values but can't figure out how. The data are in an array and in a BufferedImage.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是转换为 int:
位掩码是使转换给出 0-65535 范围内的值,而不是 -32768-32767。
The simplest way is to convert to int:
The bitmask is to make the conversion give a value in the range 0-65535 rather than -32768-32767.
从 Java 1.8 开始,可以使用
Short.toUnsignedInt
完成相同的操作:Since Java 1.8, the same can be done with
Short.toUnsignedInt
: