位置:首页 > 题库频道 > 其它分类 > 计算机其它 > Java认证Java认证Java程序员Java练习题

使用哪一个类可以实现在文件的任一个位置读写一个记录、

发布时间:2024-07-09

A.BufferedInputStream

B.FileReader

C.RandomAccessFile

D.FileWriter

试卷相关题目

  • 1下列哪一个是Java系统的标准输入流对象、

    A.System.err

    B.System.out

    C.System.in

    D.System.exit

    开始考试点击查看答案
  • 2下列流中哪一个使用了缓冲区技术?

    A.FileInputStream

    B.BufferedOutputStream

    C.FileReader

    D.DataOutputStream

    开始考试点击查看答案
  • 3下面哪个流类属于面向字符的输入流、

    A.ObjectInputStream

    B.InputStreamReader

    C.FileInputStream

    D.BufferedWriter

    开始考试点击查看答案
  • 4Java系统标准输入对象System.in使用的输入流是:

    A.InputStream

    B.DataIutputStream

    C.PrintStream

    D.InputStreamReader

    开始考试点击查看答案
  • 5Java语言提供处理不同类型流的类所在的包是(        )。

    A.java.util

    B.java.net

    C.java.sql

    D.java.io

    开始考试点击查看答案
  • 6在读字符文件Employee.dat时,使用该文件作为参数的类是:

    A.DataOutoutStream

    B.BufferReader

    C.DataInputStream

    D.FileInputStream

    开始考试点击查看答案
  • 7能读入字节数据进行Java基本数据类型判断过滤的类是(    )。

    A.BufferedInputStream

    B.FileReader

    C.FileInputStream

    D.DataInputStream

    开始考试点击查看答案
  • 8运行以下程序段将输出什么、class E{public void oneMethod() throws  ArrayIndexOutOfBoundsException{ throw new ArrayIndexOutOfBoundsException();}public static void main (String args[]){try { new E().oneMethod(); }catch (ArrayIndexOutOfBoundsException e){ System.out.println("condition 2"); }catch(Exception e){ System.out.println("condition 3"); }finally{ System.out.println("finally"); }}}

    A.编译错误

    B.condition 3finally

    C.condition 2finally

    D.condition 2

    开始考试点击查看答案
  • 9给出以下代码,请问该程序的运行结果是什么?class E{public static void main(String args[]){try{  int i = 5/0; }catch(Exception e){System.out.println("catch Exception");}catch(ArithmeticException e){System.out.println("Catch ArithmeticException");}finally{System.out. println("Catch Finally");}}}请选择一个正确答案:

    A.打印输出Catch ArithmeticException和Catch Finally

    B.打印输出Catch Finally

    C.代码编译失败

    D.打印输出Catch ArithmeticException

    E.运行期异常

    开始考试点击查看答案
  • 10有如下代码段:1)2) { if(unsafe()){.......…}3) else if(safe()){......…}4) }其中,方法unsafe() 将抛出IOException, 请问可将以下哪项填入第1行?

    A.public void methodName() throws IOException

    B.public void methodName()

    C.public void methodName() throw IOException

    D.public IOException methodName()

    开始考试点击查看答案
返回顶部