A.OutputStreamout=newFileOutputStream(“file.txt”); Out.writeBytes(“/n”);
B.OutputStreamos=newFileOutputStream(“file.txt”,true); DataOutputStreamout=newDataOutputStream(os);out.writeBytes(“/n”);
C.OutputStreamos=newFileOutputStream(“file.txt”); DataOutputStreamout=newDataOutputStream(os);out.writeBytes(“/n”);
D.OutputStreamos=newOutputStream(“file.txt”,true); DataOutputStreamout=newDataOutputStream(os);out.writeBytes(“/n”);
第1题:
A.Stringname=File.getParentName(“file.txt”);
B.Stringname=(newFile(“file.txt”)).getParent();
C.Stringname=(newFile(“file.txt”)).getParentName();
D.Stringname=(newFile(“file.txt”)).getParentFile();
E.Directorydir=(newFile(“file.txt”)).getParentDir();Stringname=dir.getName();
第2题:
下列打开文件的语句中,能创建文件的选项包括()。
A.ofstream f("file.txt", ios::out);
B.ofstream f("file.txt");
C.fstream f("file.txt", ios::out);
D.ifstream f("file.txt",ios::out);
第3题:
17、下面哪些选项能够创建一个OutputStream流,并且可以将内容附加到“file.txt”文件中?()
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(“file.txt”);
第4题:
??有一台系统为Windows Server 2008的计算机,用户john属于本地组group1,管理员创建了一个文件file.txt,并设置本地组group1对file.txt具有完全控制权限,设置john对file.txt具有拒绝读取权限,最终john对file.txt具有()权限。
A.完全控制
B.读取
C.拒绝读取
D.读取和写入
第5题:
在Windows系统中,下列语句中,可用于读取当前目录下的data目录中的file.txt文件的是()
A.with open('data/file.txt', 'r') as f:
B.with open('datafile.txt', 'r') as f:
C.with open('datafile.txt', 'r') as f:
D.with open('data//file.txt', 'r') as f: