下列程序的功能是將一個整數(shù)數(shù)組寫入二進(jìn)制文件,在程序的下劃線處應(yīng)填入的選項是()。importjava.i
下列程序的功能是將一個整數(shù)數(shù)組寫入二進(jìn)制文件,在程序的下劃線處應(yīng)填入的選項是( )。 importjava.io.*; publicclassXieShuzu{ publicstaticvoidmain(String[]a){ int[]myArray=(10,20,30,40); try{ DataOutputStreamdos= newDataOu中utStream(new FileOutputStream("ints.dat")); for(inti=O;i<myArray.length;i++) dos.______(myArray[]); dos.close(); System.out.println("已經(jīng)將整數(shù)數(shù)組寫入二進(jìn)制文件:ints.dat"): }catch(IOExceptionioe) {System.out.println("IOExcepr_on");} } }
A.writeArray
B.writeByte
C.writeInt
D.writeDouble
正確答案:C解析:向流中寫入整數(shù)數(shù)組,用WrinteInt方法。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。