如果磁盘上没有perrty.txt文件,创建File对象f时:File f = new File("perrty.txt"),就会在磁盘上创建perrty.txt。
查看答案
FileInputStream流的int read(byte b[]) 方法从源中试图读取b.length个字节到字节数组b中,返回实际读取的字节数目。如果到达文件的末尾,则返回-1。
A. 对
B. 错
下列哪个是错误的?
A. BufferedReader流的源必须是字符输入流。
BufferedWriter的目的地必须是字符输出流。
C. RandomAccessFile类既不是InputStream类的子类,也不是OutputStram类的子类。
D. RandomAccessFile流指向文件时,将刷新文件。
假设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. 程序在输出台输出: 好