文字列から整数値が与えられた場合、それを2バイトの符号付き整数に変換したいと思います。
BigInteger
仕事はしますが、2バイトを付与する方法がわかりません...
public void handleThisStringValue(String x, String y){
BigInteger bi_x = new BigInteger(x, 10);
BigInteger bi_y = new BigInteger(y, 10);
byte[] byteX = bi_x.toByteArray();
byte[] byteY = bi_y.toByteArray();
}
BigInteger.toByteArray()
私に適した負の値を処理することに気づきました。
次に、それらの値(負の値と正の値)を読み取るか、に変換すると言う必要がありbyte[2]
ますsigned int
。なにか提案を?