A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 雷楚光 中级黑马   /  2012-2-28 14:33  /  1462 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

文件是不是有个协议,没4个字节必须是大于0的?
下面我写了代码:打印的结果前面都是大于0的数,到后面的时候有大于0的也有小于0的。
是为了查错用的?
public class xuesheng

{
        public static void main(String[] args) throws IOException
        {
                FileInputStream inputStream=new FileInputStream("D:\\java\\1.zip");
                int i=-1;

                while ((i=inputStream.read())!=-1)
                {                       
                                           System.out.println(i);
                }
                                 byte[] b=new byte[1024*3000];
                while ((i=inputStream.read(b))!=-1)
                {
                        for (int j = 0; j < b.length; j++)
                        {
                                System.out.println(b[j]);
                        }                }
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马