使用FileReader读取reader.txt文本文件中的数据,reader.txt中的内容为:abcimport java.io.*;public class Example01 { public static void main(String[] args) throws Exception {FileReader reader = new FileReader("reader.txt");int ch;while ((ch = reader.read()) != -1) {System.out.print(ch+" ");}reader.close(); }}运行以上程序的结果是( )
A. 编译出错
B. a b c
C. 97 98 99
D. 无输出
查看答案
存储序列化对象的文件的扩展名是( )
A. .txt
B. .properties
C. .object
D. .class
阅读下列代码import java.io.*;public class Example {public static void main(String[] args) throws Exception { FileInputStream in = new FileInputStream("itcast.txt");int b = 0; while (true) {b = in.______;if (b == -1) {break;}System.out.println(b);}in.close() }}下列选项中,填写在程序空白处正确的是()
A. read()
B. close()
C. skip()
D. available()
下列选项中,不属于FileReader类的方法的是( )
A. read()
B. close ()
C. readLine()
D. toString()
当对象进行序列化时,必须保证该对象实现Serializable接口,否则程序会出现【】异常。