59

来源:互联网 发布:下载dreamweaver软件 编辑:程序博客网 时间:2024/05/02 14:54
package com.haizhitao.io2;import java.io.FileInputStream;public class InputStreamTest1{public static void main(String[] args) throws Exception{FileInputStream is = new FileInputStream("c:/haizhitao.txt");byte[] buffer = new byte[200];int length = 0;while(-1 != (length = is.read(buffer, 0, 200))){String str = new String(buffer, 0, length);System.out.println(str);}is.close();}}//output://haizhitao//haizhitao1//haizhitao11//haizhitao111//haizhitao1111//haizhitao11111