为了向文件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。
假设hello.txt文件的内容是:ABCDEF下列哪个是正确的?( )import java.io.*;public class E{public static void main(String[]args){File file=new File("hello.txt");byte []b=new byte[(int)file.length()];try{FileInputStream in=new FileInputStream(file);in.read(b);System.out.println(new String(b));}catch(Exception e){}}}
A. 程序编译出现错误。
B. 程序在输出台输出AB。
C. 程序在输出台输出ABC。
D. 程序在输出台输出ABCDEF。
假设hello.txt文件的内容是:ABCDEF下列哪个是正确的?( )import java.io.*;public class E{public static void main(String[]args){File file=new File("hello.txt");byte []b=new byte[5];try{FileInputStream in=new FileInputStream(file);int m=in.read(b,0,5);m=in.read(b,0,5);System.out.println(new String(b,0,m));}catch(Exception e){}}}
A. 程序编译出现错误。
B. 程序在输出台输出ABCDE。
C. 程序在输出台输出F。
D. 程序在输出台输出ABCDEF。