古越剑箫

学习是一种习惯

  :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: :: 管理 ::

 如这个文件

 

    @Test
    public void test01() throws Exception{
        InputStream in=new FileInputStream("c://test.txt");
        byte[] b=new byte[1024];
        ByteArrayOutputStream  out=new ByteArrayOutputStream();
        int len=-1;
        while((len=in.read(b))!=-1){
            out.write(b,0,len);
        }
        out.close();
        in.close();
        String str= new String(out.toByteArray(),"UTF-8");
        System.out.println(str);
    }

 

读取结果

 

 

posted on 2016-11-16 09:42  古越剑箫  阅读(1600)  评论(0编辑  收藏  举报