1

整数配列を使用して整数を 2 進数に変換しようとしています。最初の変換は toBinaryString で、ここで適切な変換 "11111111" を取得し、次のステップで配列に変換します。これが間違っているところです。私はそれが getChar 行だと思います。

int x = 255;

string=(Integer.toBinaryString(x));

int[] array = new int[string.length()];

for (int i=0; i< string.length(); i++){
array[i] = string.getChar(i);

   Log.d("TAG", " Data " + array[1] "," + array[2] + "," + array[3]);

ログには ( Data 0,0,0 ) が表示されます。探している結果は ( Data 1,1,1 ) です。

これが最終的なコードで、動作します。

        // NEW
int x = 128;

string=(Integer.toBinaryString(x));

int[] array = new int[string.length()];

for (int i=0; i < string.length(); i++) {
array[i] = Integer.parseInt(string.substring(i,i+1));
}

Log.d("TAG", "Data   " + array[0] + "" + array[1]+ "" + array[2] + "" + array[3]+  " " + array[4]+ "" + array[5] + "" + array[6] + "" + array[7]);
4

3 に答える 3

5
// Take your input integer
int x = 255;
// make an array of integers the size of Integers (in bits)
int[] digits = new Integer[Integer.SIZE];
// Iterate SIZE times through that array
for (int j = 0; j < Integer.SIZE; ++j) {
  // mask of the lowest bit and assign it to the next-to-last
  // Don't forget to subtract one to get indicies 0..(SIZE-1)
  digits[Integer.SIZE-j-1] = x & 0x1;
  // Shift off that bit moving the next bit into place
  x >>= 1;
}
于 2013-09-05T22:38:14.283 に答える