提问者:小点点

从int到byte的可能有损转换


我试图用java将十六进制数据写入我的串口,但是现在我不能将十六进制数据转换成字节数组。

以下是显示错误消息的代码:

static byte[] bytearray = {0x02, 0x08, 0x16, 0x0, 0x00, 0x33, 0xC6, 0x1B};

这是写入串行端口的代码:

try {
        outputStream = serialPort.getOutputStream();
        // Write the stream of data conforming to PC to reader protocol
        outputStream.write(bytearray);
        outputStream.flush();

        System.out.println("The following bytes are being written");
        for(int i=0; i<bytearray.length; i++){
            System.out.println(bytearray[i]);
            System.out.println("Tag will be read when its in the field of the reader");
        }
} catch (IOException e) {}

我能知道如何解决这个问题吗?目前我正在使用javax.comm插件。谢谢。


共2个答案

匿名用户

如果您查看错误消息:

Main.java:10: error: incompatible types: possible lossy conversion from int to byte
    static byte[] bytearray = {0x02, 0x08, 0x16, 0x0, 0x00, 0x33, 0xC6, 0x1B};
                                                                  ^

有一个小插入符号指向值0xC6。问题的原因是java的byte是有符号的,这意味着它的范围从-0x80到0x7F。您可以通过强制转换来修复此问题:

    static byte[] bytearray = {0x02, 0x08, 0x16, 0x0, 0x00, 0x33, (byte) 0xC6, 0x1B};

或者,可以使用范围内的负值-0x3A(相当于二进制补码符号中的0x36)。

匿名用户

尝试像这样投射0xC6因为字节范围从 -0x800x7F

static byte[] bytearray = {0x02, 0x08, 0x16, 0x0, 0x00, 0x33, (byte) 0xC6, 0x1B};