- import java.io.*;
- public class Demo
- {
- public static void main(String[] args)throws IOException
- {
- FileInputStream fis = new FileInputStream("exercise.txt");
- PrintStream fos =System.out;
- byte[] buf =new byte[5];
- int len = 0;
-
- while((len=fis.read(buf))!=-1)
- {
- fos.write(buf,0,len);
- fos.flush();
- }
- fos.close();
- fis.close();
- }
- }
复制代码 |