首页 > 代码库 > javaSE之如何将一个文档显示出来(,txt,.doc,.....)

javaSE之如何将一个文档显示出来(,txt,.doc,.....)

 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 test17 {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      try23      {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 }