1

160 桁のバイナリ文字列があります。私が試してみました:

new BigInteger("0000000000000000000000000000000000000000000000010000000000000000000000000000001000000000010000011010000000000000000000000000000000000000000000000000000000000000", 2).toByteArray()

ただし、先頭の 0 バイトが削除された 15 バイトの配列が返されます。

先頭の 0 バイトを予約し、20 バイトのままにしておきます。

それを達成するための他の方法をいくつか知っていますが、数行のコードだけで済む簡単な方法があるかどうかを知りたいです。

4

2 に答える 2

1

なぜ単純ではないのですか:

public static byte[] convert160bitsToBytes(String binStr) {
    byte[] a = new BigInteger(binStr, 2).toByteArray();
    byte[] b = new byte[20];
    int i = 20 - a.length;
    int j = 0;
    if (i < 0) throw new IllegalArgumentException("string was too long");
    for (; j < a.length; j++,i++) {
        b[i] = a[j];
    }
    return b;
}
于 2013-07-11T08:01:52.850 に答える
1

このコードのようなものがうまくいくはずです:

byte[] src = new BigInteger(binStr, 2).toByteArray();
byte[] dest = new byte[(binStr.length()+7)/8]; // 20 bytes long for String of 160 length
System.arraycopy(src, 0, dest, 20 - src.length, src.length);
// testing
System.out.printf("Bytes: %d:%s%n", dest.length, Arrays.toString(dest));

出力:

Bytes: 20:[0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 65, -96, 0, 0, 0, 0, 0, 0, 0]
于 2013-07-11T10:05:17.480 に答える