下面代码采用缓冲的方式实现了将一个文件的内容复制到另一个文件的功能,下划线处应填写的代码是() import java.io.*; public class test { public static void main(String [] args){ try{ FileInputStream is = new FileInputStream( “ D:\\from.txt ” ); FileOutputStream os =new FileOutputStream( “ D:\\to.txt ” ); BufferedInputStream bi = new _________________(is); BufferedOutputStream bo = new BufferedOutputStream(os); Byte[] data = new byte[1]; while(bi.read(data) != -1){ bo.___________(data); } Bo.flush(); bi.close(); bo.close(); } catch(ArrayIndexOutofBoundsException e){ e.printStackTrace(); } catch(IOException e){ e.printStackTrace(); } } }