《世说新语》是中国( )产生的一部主要记述魏晋人物言谈轶事的( )。是由南朝刘宋宗室临川()组织一批文人编写的,梁代刘峻作注。
查看答案
《世说新语》,今传本皆作三卷,分为德行、( )、政事、( )等36门,全书共一千多则。
下列哪个叙述是正确的?( )
A. new File("E.java")可能发生异常。
BufferedReader流可以指向FileInputStream流。
C. BufferedWriter流可以指向FileWriter流。
D. RandomAccessFile流一旦指向文件,就会刷新该文件。
为了向文件hello.txt尾加数据,下列个是正确创建指向hello.txt的流?( )
A. try{OutputStream out=new FileOutputStream("hello.txt");}catch(Exception e){}
B. try{OutputStream out=new FileOutputStream("hello.txt",true);}catch(Exception e){}
C. try{OutputStream out=new FileOutputStream("hello.txt",false);}catch(Exception e){}
D. try{Writer out=new FileWriter("hello.txt");}catch(Exception e){}
假设hello.txt文件的内容是:ABCDEF下列哪个是正确的?( )import java.io.*;public class E{public static void main(String[]args){File file=new File("hello.txt");try{FileInputStream in=new FileInputStream(file);int c=in.read();c=in.read();System.out.println((char)c);}catch(Exception e){}}}
A. 程序编译出现错误。
B. 程序在输出台输出字符B。
C. 程序在输出台输出字符A。
D. 程序在输出台输出-1。