请问:这个输出好多0,然后加入判断前面加0的代码后有三位数(0ab 0bf)之类的,哪里出问题了

来源:4-2 字节流之文件输入流FileInputStream-2

黯夜旋风

2015-12-03 11:42

public static void printHexByByte(String fileName) throws IOException{
		FileInputStream in = new FileInputStream(fileName);
		byte[] buf = new byte[8 *1024];
		int bytes = 0;
		int j =1;
		while((bytes = in.read(buf,0,buf.length))!=-1){
			for(int i = 0; i < bytes; i ++){
				
				System.out.print(Integer.toHexString(buf[i] & 0xff)+" ");
				if(j++ % 10 == 0){
					System.out.println();
				}
			}
		}
		in.close();
	}

然后就输出:

.....(此处省略好多行)

0 0 0 0 0 0 0 0 0 0 

0 0 0 0 0 0 0 0 0 0 

0 0 0 0 0 0 0 0 0 0 

0 0 0 0 0 0 0 0 0 0 

0 0 0 0 0 0 0 0 0 0 

0 0 0 0 0 0 0 0 0 0 

0 0 0 0 0 0 0 0 0 0 

0 0 0 0 0 0 0 0 0 0 

0 0 0 0 0 54 41 47 d4 c2 

d1 c0 cd e5 0 0 0 0 0 0 

0 0 0 0 0 0 0 0 0 0 

0 0 0 0 0 0 0 0 46 2e 

49 2e 52 2e b7 c9 b6 f9 c0 d6 

cd c5 0 0 0 0 0 0 0 0 

0 0 0 0 0 0 0 0 b0 ae 

20 b8 e8 bc a7 0 0 0 0 0 

0 0 0 0 0 0 0 0 0 0 

0 0 0 0 0 0 0 0 0 0 

0 0 20 20 20 20 20 20 20 20 

20 20 20 20 20 20 20 20 20 20 

20 20 20 20 20 20 20 20 20 20 

20 20 c 

13448


写回答 关注

1回答

  • greenhandc
    2015-12-15 19:02:44
    已采纳

    我觉得是你读的文件前面很多是空的 换一个文件读取试试看,自己写一个txt格式的

文件传输基础——Java IO流

为您介绍IO流的使用,以及对象的序列化和反序列化的内容

133754 学习 · 1030 问题

查看课程

相似问题