例如:
FileOutputStream fs=new FileOutputStream("c:\\a.txt");
BufferedOutputStream ww=new BufferedOutputStream(fs);使用完毕后,两个流都要关闭么? 
BufferedOutputStream不是依赖于FileOutputStream么?只把FileOutputStream关了不行么?
如果都要关闭的话,关闭的顺序是怎么样的?
关闭操作都做了什么?