面那些选项能够创建一个OutputStream流,并且可以将内容附加到“file.txt”文件中
A: OutputStream out=new FileOutputStream(“file.txt“);
B: OutputStream out=new FileOutputStream(“file.txt“,”append”);
C: OutputStream out=new FileOutputStream(“file.txt“,true);
D: OutputStream out=new FileOutputStream(“file.txt“);
A: OutputStream out=new FileOutputStream(“file.txt“);
B: OutputStream out=new FileOutputStream(“file.txt“,”append”);
C: OutputStream out=new FileOutputStream(“file.txt“,true);
D: OutputStream out=new FileOutputStream(“file.txt“);
举一反三
- 能够获得文件file.txt所在目录路径的语句是()。 A: String name=File.getParentName(”file.txt”); B: String name=(new File(”file.txt”)).getParent(); C: String name=(new File(”file.txt”)).getParentName(); D: String name=(new File(”file.txt”)).getParentFile();
- 在Windows10中,以下文件名()是错误的. A: &file.txt B: file*.txt C: file.txt D: 文件.txt
- 以下哪条语句可以获取文件"file.txt"的上一级目录的名字 (). A: String name=File.getParentName("file.txt"); B: String name=(new File("file.txt")).getParent(); C: String name=(new File("file.txt")).getParentName(); D: String name=(new File("file.txt")).getParentFile(); E: Directory dir=(new File("file.txt")).getParentDir(); <br/>String name=dir.getName();
- 下列写法错误的是 A: File f = new File ("a.txt"); B: File f = new File ("d:\\a.txt"); C: FileInputStream fis = new FileInputStream (new File ("a.txt")); D: FileOutputStream fos = new FileOutputStream ( File ("."));
- 将文件file.txt的所有使用者的文件执行权限删除,以下命令中(<br/>)是错的。 A: chmod a-x file.Txt B: chmod -x file.txt C: chmod o-x file.txt D: chmod ugo-x file txt