假设hello.txt文件的内容是:ABCDEF 下列哪个是正确的?import java.io.*;public class E {public static void main(String args[]){File file = new File("hello.txt");try {RandomAccessFile in = new RandomAccessFile(file,"rw");in.seek(3);int m = in.read();System.out.println((char)m);}catch(IOException exp){}}}
A. 程序编译出现错误。
B. 程序在输出台输出 B。
C. 程序在输出台输出字符 C。
D. 程序在输出台输出 D。
假设hello.txt文件的内容是:今天是个好日子 下列哪个是正确的?import java.io.*;public class E {public static void main(String args[]){File file = new File("hello.txt");try {FileReader in = new FileReader(file);int m =in.read();System.out.println((char)m);}catch(IOException exp){}}}
A. 程序编译出现错误
B. 程序在输出台输出:今天
C. 程序在输出台输出:今
D. 程序在输出台输出: 好
下列【1】、【2】、【3】、【4】注释标注的哪行代码有错误?import java.io.*;public class Ex {public static void main(String args[]){File file = new File("welcome.txt");//【1】try{FileOutputStream fileOut = new FileOutputStream(file);ObjectOutputStream objectOut = new ObjectOutputStream(fileOut);//【2】objectOut.writeObject("你好");//【3】objectOut.close();FileInputStream fileIn = new FileInputStream(file);ObjectInputStream objectIn = new ObjectInputStream(fileIn);String str = objectIn.readObject();//【4】System.out.println(str);}catch(Exception exp){}}}
A. 【1】
B. 【2】
C. 【3】
D. 【4】
下列【1】、【2】、【3】、【4】注释标注的哪行代码有错误?import java.io.*;public class E {public static void main(String args[]){File file = new File("hello.txt");//【1】int m = file.isFile();//【2】try{FileReader in = new FileReader(file);BufferedReader bufferRead =new BufferedReader(in);//【3】String s = bufferRead.readLine(); //【4】}catch(IOException exp){}}}
A. 【1】
B. 【2】
C. 【3】
D. 【4】