Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字符串str = "0x01"。我想把这个字符串完全转换成字节。
str = "0x01"
我试过这样做str.getBytes(),EncodingUtils.getAsciiBytes(str)但它给出了我想的每个字符的字节值。
str.getBytes()
EncodingUtils.getAsciiBytes(str)
我希望字节变量的值为 0x01。
知道我们该怎么做吗?
谢谢
尝试这个:
byte b = Byte.decode("0x01");