【java】之读取InputStream流

如这个文件

【java】之读取InputStream流

    @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);
}

读取结果

【java】之读取InputStream流

上一篇:22 高级SQL特性


下一篇:CentOS6.5 安装mysql5.6.30