10

我想从字符串中获取二进制 (011001..) 但我得到 [B@addbf1 ,必须有一个简单的转换来做到这一点,但我没有看到它。

public static String toBin(String info){
  byte[] infoBin = null;
  try {
   infoBin = info.getBytes( "UTF-8" );
   System.out.println("infoBin: "+infoBin);
  }
  catch (Exception e){
   System.out.println(e.toString());
  }
  return infoBin.toString();
}

在这里我得到 infoBin: [B@addbf1
我想要 infoBin: 01001 ...

任何帮助将不胜感激,谢谢!

4

3 回答 3

19

只有 Integer 具有转换为二进制字符串表示的方法,请查看:

import java.io.UnsupportedEncodingException;

public class TestBin {
    public static void main(String[] args) throws UnsupportedEncodingException {
        byte[] infoBin = null;
        infoBin = "this is plain text".getBytes("UTF-8");
        for (byte b : infoBin) {
            System.out.println("c:" + (char) b + "-> "
                    + Integer.toBinaryString(b));
        }
    }
}

会打印:

c:t-> 1110100
c:h-> 1101000
c:i-> 1101001
c:s-> 1110011
c: -> 100000
c:i-> 1101001
c:s-> 1110011
c: -> 100000
c:p-> 1110000
c:l-> 1101100
c:a-> 1100001
c:i-> 1101001
c:n-> 1101110
c: -> 100000
c:t-> 1110100
c:e-> 1100101
c:x-> 1111000
c:t-> 1110100

填充:

String bin = Integer.toBinaryString(b); 
if ( bin.length() < 8 )
  bin = "0" + bin;
于 2010-11-13T18:21:28.187 回答
3

数组没有合理的toString覆盖,因此它们使用默认的对象表示法。

将最后一行更改为

return Arrays.toString(infoBin);

你会得到预期的输出。

于 2010-11-13T18:07:47.187 回答
0

当您尝试+在字符串上下文中使用对象时,java 编译器会静默插入对 toString() 方法的调用。

换句话说,你的陈述看起来像

System.out.println("infobin: " + infoBin.toString())

在这种情况下,它是从 Object 继承的。

您将需要使用 for 循环从字节数组中挑选出每个字节。

于 2010-11-13T18:07:31.493 回答