码迷,mamicode.com
首页 > 其他好文 > 详细

io流

时间:2016-04-09 23:42:44      阅读:464      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!