• 2022-06-07 问题

    想要实现使用缓冲流创建输出流,并实现向文件中追加数据的功能的方式是() A: BufferedOutputStreambis=newBufferedOutputStream(newFileOutputStream("c:\\demo.txt"),true); B: BufferedOutputStreambis=newBufferedOutputStream(newFileOutputStream("c:\\demo.txt",true); C: BufferedOutputStreambis=newBufferedOutputStream(newFileOutputStream("c:\\demo.txt",false)); D: BufferedOutputStreambis=newBufferedOutputStream(newFileOutputStream("c:\\demo.txt"),false);

    想要实现使用缓冲流创建输出流,并实现向文件中追加数据的功能的方式是() A: BufferedOutputStreambis=newBufferedOutputStream(newFileOutputStream("c:\\demo.txt"),true); B: BufferedOutputStreambis=newBufferedOutputStream(newFileOutputStream("c:\\demo.txt",true); C: BufferedOutputStreambis=newBufferedOutputStream(newFileOutputStream("c:\\demo.txt",false)); D: BufferedOutputStreambis=newBufferedOutputStream(newFileOutputStream("c:\\demo.txt"),false);

  • 2021-04-14 问题

    假设文件“a.txt”的长度为 100 字节,那么当正常运行语句“OutputStream f = newFileOutputStream(new File(“a.txt”));”之后,文件“a.txt”的长度变为 0 字节。

    假设文件“a.txt”的长度为 100 字节,那么当正常运行语句“OutputStream f = newFileOutputStream(new File(“a.txt”));”之后,文件“a.txt”的长度变为 0 字节。

  • 2022-07-25 问题

    新建一个流对象,下面哪个选项的代码是错误的?() A: newBufferedWriter(newFileWriter("a.txt")); B: newBufferedReader(newFileInputStream("a.dat")); C: newGZIPOutputStream(newFileOutputStream("a.zip")); D: newObjectInputStream(newFileInputStream("a.dat"));

    新建一个流对象,下面哪个选项的代码是错误的?() A: newBufferedWriter(newFileWriter("a.txt")); B: newBufferedReader(newFileInputStream("a.dat")); C: newGZIPOutputStream(newFileOutputStream("a.zip")); D: newObjectInputStream(newFileInputStream("a.dat"));

  • 2021-04-14 问题

    阅读下段代码importjava.io.*;publicclassExample{publicstaticvoidmain(String[]args)throwsException{FileInputStreamfis=newFileInputStream("file.txt");FileOutputStreamfos=newFileOutputStream("copy_file.txt");intch=0;while((ch=fis.read())!=-1){fos.write(ch);}fos._______;fis.close();}}请说出下划线上,填写的方法名称

    阅读下段代码importjava.io.*;publicclassExample{publicstaticvoidmain(String[]args)throwsException{FileInputStreamfis=newFileInputStream("file.txt");FileOutputStreamfos=newFileOutputStream("copy_file.txt");intch=0;while((ch=fis.read())!=-1){fos.write(ch);}fos._______;fis.close();}}请说出下划线上,填写的方法名称

  • 1