Java字节数组操作

发布于 2024-12-15 14:46:03 字数 351 浏览 0 评论 0原文

我试图选择字节数组中最后一个字节的低 4 位。这就是我以前在 PHP 中完成的方法,但我是 Java 新手。

$lower4bit = substr($bytes[19], -1);

//Convert the hex to decimal to get the offset value
$offset = hexdec($lower4bit);

//Select the value of the 4 bytes starting at the offset
$joinedArray = implode(array_slice($bytes, $offset, 4));

谁能指出我使用 Java 的正确方向?

I am trying to select the lower 4 bits of the last byte in a byte array. This is how I have previously done it in PHP but I am new to Java.

$lower4bit = substr($bytes[19], -1);

//Convert the hex to decimal to get the offset value
$offset = hexdec($lower4bit);

//Select the value of the 4 bytes starting at the offset
$joinedArray = implode(array_slice($bytes, $offset, 4));

Can anyone point me in the correct direction with Java?

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

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

发布评论

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

评论(1

乖乖公主 2024-12-22 14:46:03

您可以像这样访问数组:

y = a[i];

您可以像这样找到数组的长度:

len = a.length;

您可以像这样隔离整数的最后 4 位:

y = x & 0xF;

这些应该足以构造您需要的代码。

You access an array like so:

y = a[i];

You find the length of an array like so:

len = a.length;

You can isolate the last 4 bits of an integer like so:

y = x & 0xF;

These should be sufficient to construct the code that you need.

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