java如何读取文件的二进制数据并转化为十进制?
String name = "C:\\Users\\qqq\\Desktop\\1.txt";byte[] bytes = FileUtil.readBytes(new File(name));
BigInteger bi = new BigInteger(bytes);
System.out.println(bi.toString(10));
我试过这样是可以的 但是太慢了 循环数组,用包装类装箱再拆箱试过没?速度如何?
页:
[1]