下列选项中,那个流使用到了缓冲技术?()
A. BuffereOutputStream
B. FileIutputStream
C. DataOutputStream
D. FileReader
File类提供了一系列方法,用于操作其内部封装的路径指向的文件或者目录,当File对象对应的文件不存在时,使用哪个方法将新建的一个File对象指定到新文件中。()
A. String getAbsolutePath()
B. boolean canRead()
C. boolean createNewFile()
D. boolean exists()
用“new FileOutputStream("data.txt",true)”创建一个FileOutputStream对象,则下面说法哪个错误的? ()
A. 如果文件data.txt不存在,也不一定会抛出IOException异常
B. 如果文件data.txt不存在,则可能会新建文件data.txt
C. 如果文件data.txt存在,则将覆盖掉文件中原有的内容
D. 如果文件data.txt存在,则从文件的末尾开始添加新内容
下列选项中,那些事标准输入输出流?()(多选)
A. System.In
B. System.Out
C. InputStream
D. OutputStream