FileOutputStream和FileInputStream的构造方法

来源:互联网 发布:mysql数据库优化 编辑:程序博客网 时间:2024/05/22 14:20

 

 

Which two create an InputStream and open file the “file.txt” for reading? (Choose Two) 

A. InputStream in=new FileReader(“file.txt”); 

B. InputStream in=new FileInputStream(“file.txt”); 

C. InputStream in=new InputStreamFileReader (“file.txt”, “read”); 

D. FileInputStream in=new FileReader(new File(“file.txt”)); 

E. FileInputStream in=new FileInputStream(new File(“file.txt”)); 

Answer: B, E 

 

 

 

Which two construct an OutputSream that appends to the file “file.txt”? (Choose Two) 

A. OutputStream out=new FileOutputStream(“file.txt”); 

B. OutputStream out=new FileOutputStream(“file.txt”, “append”); 

C. FileOutputStream out=new FileOutputStream(“file.txt”, true); 

D. FileOutputStream out=new FileOutputStream(new file(“file.txt”)); 

E. OutputStream out=new FileOutputStream(new File(“file.txt”)true); 

Answer: C, E 

 

 

Which constructs a BufferedIputStream? 

A. New BufferedInputStream(“in.txt”); 

B. New BufferedInputStream(new File(“in.txt”)); 

C. New BufferedInputStream(new Writer(“in.txt”)); 

D. New BufferedInputStream(new Writer(“in.txt”)); 

E. New BufferedInputStream(new InputStream(“in.txt”)); 

F. New BufferedInputStream(new FileInputStream(“in.txt”)); 

Answer: F

 

 

java.io 

Class FileInputStream

 

 

 

Constructor Summary

FileInputStream(File file) 

          Creates a FileInputStream by opening a connection to an actual file, the file named by the File object file in the file system.

 

FileInputStream(String name) 

          Creates a FileInputStream by opening a connection to an actual file, the file named by the path name name in the file system.

 

 

 

 

java.io 

Class FileOutputStream

 

 

Constructor Summary

FileOutputStream(File file) 

          Creates a file output stream to write to the file represented by the specified File object.

FileOutputStream(File file, boolean append) 

          Creates a file output stream to write to the file represented by the specified File object.

 

FileOutputStream(String name) 

          Creates an output file stream to write to the file with the specified name.

FileOutputStream(String name, boolean append) 

          Creates an output file stream to write to the file with the specified name.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

原创粉丝点击