早上好。 我有一个电子项目,我从RS232设备收到一个变量。该变量需要转换为HEX类型,其数字由成对的空格分隔,例如,如下面的结构: “12 42 15 54”
public static void main(String[] args) {
int ch = -1;
String chave = "";
while(ch != 'Q') {
ch = inStream.read();
if (ch >= 0) {
outStream.write(ch);
System.out.print((char)ch);
String hexch = Integer.toHexString(ch);
System.out.print(hexch);
}
}
我用来转换为Hex的代码被评论,但基本上我想重建我存储“ch”变量的方式。我需要通过JDE 1.3编译项目,以便严格限制我的选择。 我在论坛上研究过,但我找不到答案。
谢谢!