方法要返回这个流,那还能不能把流close了
public FileInputStream AAA(){
     FileInputStream is = new .....
     
     is.close();
     return is;
}
会不会关了就返回不了了