中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

Java bin2hex如何處理負數轉換

小樊
82
2024-09-29 15:43:06
欄目: 編程語言

在Java中,bin2hex方法用于將字節數組轉換為十六進制字符串。但是,bin2hex方法本身不支持負數的處理。為了處理負數,我們需要在將字節數組轉換為十六進制字符串之前,先將其轉換為無符號字節數組。以下是一個示例:

public class Bin2HexWithNegativeNumbers {
    public static void main(String[] args) {
        byte[] signedBytes = new byte[]{-1, 2, 3, 4};
        byte[] unsignedBytes = toUnsignedByteArray(signedBytes);
        String hexString = bytesToHex(unsignedBytes);
        System.out.println("Hex string: " + hexString);
    }

    private static byte[] toUnsignedByteArray(byte[] signedBytes) {
        byte[] unsignedBytes = new byte[signedBytes.length];
        for (int i = 0; i < signedBytes.length; i++) {
            unsignedBytes[i] = (byte) (signedBytes[i] & 0xFF);
        }
        return unsignedBytes;
    }

    private static String bytesToHex(byte[] bytes) {
        StringBuilder sb = new StringBuilder();
        for (byte b : bytes) {
            sb.append(String.format("%02X", b));
        }
        return sb.toString();
    }
}

在這個示例中,我們首先將包含負數的字節數組signedBytes轉換為無符號字節數組unsignedBytes。然后,我們使用bytesToHex方法將無符號字節數組轉換為十六進制字符串。最后,我們打印出轉換后的十六進制字符串。

0
吉木乃县| 辽宁省| 夏河县| 甘孜县| 金阳县| 博客| 柯坪县| 白银市| 瑞丽市| 益阳市| 浮梁县| 镇沅| 衡阳县| 沈阳市| 丰顺县| 雅江县| 桐庐县| 宜宾市| 印江| 河间市| 普安县| 且末县| 舒兰市| 临江市| 宝坻区| 延边| 宜君县| 林芝县| 通江县| 水城县| 阳江市| 平潭县| 顺义区| 葵青区| 兴国县| 集贤县| 南投县| 江口县| 武强县| 晋江市| 湟源县|