我正在尝试选择字节数组中最后一个字节的低 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 的正确方向?