为了向hello.txt尾加数据,下列哪一项能够正确创建指向hello.txt的流?
9 查阅
为了向hello.txt尾加数据,下列哪一项能够正确创建指向hello.txt的流?
A.try{OutputStreamout=newFileOutputStream(“hello.txt”);}Catch(IOExceptione){}
B.try{OutputStreamout=newFileOutputStream(“hello.txt”,true);}Catch(IOExceptione){}
C.try{OutputStreamout=newFileOutputStream(“hello.txt”,false);}Catch(IOExceptione){}
D.try{OutputStreamout=newOutputStream(“hello.txt”,true);}Catch(IOExceptione){}
参考答案: