1 package DEMO ; 2 3 import java.io.File; 4 import java.io.FileInputStream; 5 import java.io.IOException; 6 import java.io.InputStream; 7 8 9 /* 文件字节输入流 10 * 1.设定输入流的源 11 * 2.创建指定源的输入流 12 * 3.让输入流读取源中的数据 13 * 4.关闭输入流 14 * */ 15 16 public class test 17 { 18 public static void main(String args[]) 19 { 20 byte array [] = new byte [100]; 21 File mt = new File("C:\\6140\\wakaka\\bin\\DEMO","test.class"); 22 try 23 { 24 int n=-1; 25 InputStream in= new FileInputStream(mt); 26 while((n=in.read(array, 0, 100))!=-1) 27 { 28 String ss = new String(array,0,n); 29 System.out.println(ss); 30 } 31 } 32 catch(IOException e) 33 { 34 System.out.println(e); 35 } 36 } 37 }