我需要向 SNMP 代理发送一个 8 字节的字符串。
我的号码可以是一个大整数作为字符串。由于有符号字节的 java 限制,我遇到了一些数字的问题。
例如,如果 num 为“555”,则 SNMP 代理接收正确的值。如果 num 为“666”,则 SNMP 代理接收到错误的值,因为数组中的一个字节具有 -ve 值。
我用 0xFF 做了一点,还是不行。我怎样才能解决这个问题?谢谢你的帮助!
public static String stringNumToOctetString(String num) {
BigInteger bi = new BigInteger(num);
byte[] b = bi.toByteArray();
int n = 8 - b.length;
byte[] bVal = new byte[8]; //return must be 8 bytes
for(int i=0; i<8; i++) {
bVal[i] = (byte) 0;
}
int k = 0;
for(int j=n; j<8; j++) {
bVal[j] = (byte) (b[k++] & 0xFF);
}
return new String(bVal);
}