读取指定的文件并转成字符串

读取指定的文件并转成字符串

 

 InputStream filein  =   new  FileInputStream( " C://1.txt " );
 OutputStream output 
=  response.getOutputStream(); // 得到输出流
 BufferedOutputStream bos = new  BufferedOutputStream(output); // 输出缓冲流       
 BufferedInputStream bis = new  BufferedInputStream(filein); // 输入缓冲流
  byte  data[] = new   byte [ 4096 ]; // 缓冲字节数    
  int  size = 0 ;     
 size
= bis.read(data);    
 
while  (size !=- 1 )     {  
  bos.write(data,
0 ,size);      
  size
= bis.read(data);   
  }
   
 bis.close();  
 bos.flush();
// 清空输出缓冲流   
 bos.close();   
    output.close();           
 filein.close();

你可能感兴趣的:(读取指定的文件并转成字符串)