String TestStr="8";
int testInt=Integer.parseInt(TestStr, 2);
int temp=Integer.valueOf(TestStr, 2).intValue();
上面两个 都会报错....
求解!
------解决方案--------------------
int i=8;
String testInt=Integer.toBinaryString(i);
System.out.println(testInt);
转成二进制的1000,然后转为一个String类型 就变成字符串"1000"
好吧,这应该是你想要的
------解决方案--------------------
Integer i = 9 ;
String str = i.toBinaryString(i) ;
System.out.println(str) ; //1001