多项选择题

A.File f = new File("/","autoexec.bat");
B.DataInputStream din = new DataInputStream(new FileInputStream("autoexec.bat"));
C.InputStreamReader in = new InputStreamReader(System.in);
D.OutputStreamWriter out = new OutputStreamWriter(System.in);

相关考题

单项选择题 在J2EE中,如果去编译并运行下面的代码,在这里假定在当前目录下没有Hello.txt文件: import java.io.*;  public class Mine {  public static void main(String argv[]){      Mine m=new Mine();  System.out.println(m.amethod());   }  public int amethod() {     try {  FileInputStream dis=new FileInputStream("Hello.txt");  }  catch (FileNotFoundException fne) {  System.out.println("No such file found");          return -1;     }  catch(IOException ioe)  { }     finally {  System.out.println("Doing finally");     }  return 0;   } }  结果会输出()。

单项选择题 在J2EE中,某一java程序中有如下代码:  DataInputStream din = new DataInputStream(new BufferedInputStream                            (new FileInputStream("employee.dat")));  System.out.print(din.readByte());  假设在employee.dat文件中只有如下一段字符:abcdefg。则:System.out在屏幕上打印( )。

多项选择题 在J2EE中,Servlet1中有如下代码:  PrintWriter out = response.getWriter();    out.println("请同学们仔细看题目再回答!");  假设该Servlet运行的平台是Apache Tomcat4.03以下版本。 为了可以在浏览器中显示汉字,可以( )。