栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验

[单项选择题] 阅读下面程序 import java.io.*; public class ByteStreamTest  public static void main(String[] a

面试经验 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

[单项选择题] 阅读下面程序  import java.io.*;  public class ByteStreamTest    public static void main(String[] a

[单项选择题] 阅读下面程序
import java.io.*;
public class ByteStreamTest
 public static void main(String[] args)
  int[] myArray=10,20,30,40;
  try
   DataOutputStream dos=new DataOutputStream
   (new ______("ints.dat"));
   for(int i=0;i<myArray.length;i++)dos.writeInt(myArray[i]);
   dos.close();
   System.out.println("Have written binary file ints.dat");
   catch(IOException ioe)
   System.out.println("IOException");
  
 

为保证程序正确运行,在程序中下画线处应填人的代码是


A.FileOutputStream
B.ByteArrayOutputStream
C.BufferedOutputStream
D.FileWriter


参考答案:

A

问题解析:

二进制文件可作为FileOutputStream对象的构造方法的参数,而FileOutputStream对象作为DataOutputStream的构造方法的参数实现DataOutputStream类。在本程序中,ints.dat二进制文件应作为FileOutputStream对象构造方法的参数,然后FileOutputStream对象作为字节输出流的形式参数。
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/258889.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号