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

能读入字节数据进行Java基本数据类型判断过滤的类是(    )。

发布时间:2024-07-09

A.BufferedInputStream

B.FileReader

C.FileInputStream

D.DataInputStream

试卷相关题目

  • 1在读字符文件Employee.dat时,使用该文件作为参数的类是:

    A.DataOutoutStream

    B.BufferReader

    C.DataInputStream

    D.FileInputStream

    开始考试点击查看答案
  • 2使用哪一个类可以实现在文件的任一个位置读写一个记录、

    A.BufferedInputStream

    B.FileReader

    C.RandomAccessFile

    D.FileWriter

    开始考试点击查看答案
  • 3下列哪一个是Java系统的标准输入流对象、

    A.System.err

    B.System.out

    C.System.in

    D.System.exit

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

    A.FileInputStream

    B.BufferedOutputStream

    C.FileReader

    D.DataOutputStream

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

    A.ObjectInputStream

    B.InputStreamReader

    C.FileInputStream

    D.BufferedWriter

    开始考试点击查看答案
  • 6运行以下程序段将输出什么、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

    开始考试点击查看答案
  • 7给出以下代码,请问该程序的运行结果是什么?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.运行期异常

    开始考试点击查看答案
  • 8有如下代码段: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()

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

    A.condition 1condition 2finally

    B.编译错误

    C.condition 2

    D.condition 2finally

    开始考试点击查看答案
  • 10给出以下代码,请问该程序的运算结果是 什么?class Example{public static void main(String args[]){System.out.println(3/0);}}请选择一个正确答案:

    A.运行期异常

    B.Java.lang,ArithmeticException 异常抛出

    C.打印输出Infinity

    D.编译失败

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