针对文件的读写,JDK专门提供了两个类,分别是FileInputStream和FileOutputStream。
举一反三
- 下列哪个类提供了随机访问文件的方法( ) A: RandomAccessFile类 B: File类 C: FileInputStream类 D: FileOutputStream类
- 在JDK中提供了两个用于实现TCP程序的类,分别是【】类和【】类。
- 在JDK中提供了两个类可以将字节流转换为字符流,它们分别是_____________和_____________。
- 为16位Unicode字符流提供读和写操作支持的类分别是( )。 A: FileInputStream类和FileOutputStream类 B: InputStream类和OutputStream类 C: FileReader类和FileWriter类 D: File_Reader类和File_Writer类
- 下列哪个选项定义了带有缓存的文件字节输入流 A: BufferedInputStream bis = new BufferedInputStream(new FileInputStream(...)); B: BufferedOutputStream bos = new BufferedOutputStream(new FileInputStream(...)); C: FileInputStream fis = new FileInputStream(new BufferedInputStream(...)); D: FileOutputStream fis = new FileOutputStream(new BufferedOutputStream(...));