首页 > 其他 > 详细

io流

时间:2016-04-09 23:41:34      阅读:421      评论:0      收藏:0      [点我收藏+]

import java.io.File; import java.io.FileInputStream; import java.io.IOException;

public class ioTest {

 public static void main(String[] args) {

  File file=new File("f:"+File.separator+"test.txt");

   FileInputStream fis = null;

   try { 

      fis = new FileInputStream(file);

       byte[] b = new byte[2];

    int num = 0; 

   while((num = fis.read(b))!=-1){

     System.out.print("******"+num);  

System.out.println("--------"+new String(b,0,num));  

    }   

        }   catch (IOException e) {

    e.printStackTrace();

   }

 }

}

 

 

******2--------先
******2--------休
******2--------息
******2--------吧
******1--------1

总结:

1.String(byte[] byte,int start,int length)的length是num的长度

io流

原文:http://www.cnblogs.com/bky8652362/p/5372880.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!