Vector filelist = ((Directory) file).getList();
String[] filelist = file.directory();
Enumeration filelist = file.contents();
String[] filelist = file.list();
Vector filelist = (new Directory(file)).files();
第1题:
A.A file system cannot be mounted on a directory containing data.
B.Mounting a file system on a mount point containing data will delete the data.
C.Mounting a file system on a amount point containing data will make the data temporarily inaccessible.
D.A systems administrator must manually create an empty directory prior to mounting an AIX JFS.
第2题:
Which of the following commands changes a file characteristic so that it cannot be seen with astandard directory query? ()
第3题:
Which determines if “prefs” is a directory and exists on the file system?()
第4题:
After a merger with another small business, your company has inherited a legacy WAR file but the originalsource files were lost. After reading the documentation of that web application,you discover that the WARfile contains a useful tag library that you want to reuse in your own webapp packaged as a WAR file. What do you need to do to reuse this tag library?()
第5题:
Given that file is a reference to a File object that represents a directory, which code fragments will succeed in obtaining a list of the entries in the directory?()
第6题:
Windows Communication Foundation (WCF) service will be hosted in Microsoft Internet Information Services (IIS).You create a new application in IIS to host this service and copy the service DLL to the bin directory of the application.You need to complete the deployment of this service to IIS. What should you do next?()
第7题:
Simply rename the legacy WAR file as a JAR file and place it in your webapp’s library directory.
Unpack the legacy WAR file, move the TLD file to the META-INF directory, repackage the whole thingas a JAR file, and place that JAR file in your webapp’s library directory.
Unpack the legacy WAR file, move the TLD file to the META-INF directory, move the class files to thetop-level directory, repackage the whole thing as a JAR file, and place that JAR file in your webapp’slibrary directory.
Unpack the legacy WAR file, move the TLD file to the META-INF directory, move the class files to the top-level directory, repackage the WAR, and place that WAR file in your webapp’s WEB-INF directory.
第8题:
Boolean exists=Directory.exists (“prefs”);
Boolean exists=(new File(“prefs”)).isDir();
Boolean exists=(new Directory(“prefs”)).exists();
Boolean exists=(new File(“prefs”)).isDirectory();
Boolean exists=true; Try{ Directory d = new Directory(“prefs”); } catch (FileNotFoundException e) { exists = false; }
第9题:
String name= File.getParentName(“file.txt”);
String name= (new File(“file.txt”)).getParent();
String name = (new File(“file.txt”)).getParentName();
String name= (new File(“file.txt”)).getParentFile();
Directory dir=(new File (“file.txt”)).getParentDir(); String name= dir.getName();
第10题:
All three files are directly accessible.
Only File1.html is directly accessible.
Only File2.html is directly accessible.
Only File3.html is directly accessible.
Only File1.html and File2.html are directly accessible.
第11题:
attrib file.txt +h
attrib file.txt +r
ren file.txt
attrib file.txt +s
第12题:
mv /old_dir/file /new_dir
mv -p /old_dir/file /new_dir
mv -k /old_dir/file /new_dir
mv /old_dir/file /new_dir/new_file
第13题:
Given a portion of a valid Java EE web application’s directory structure: MyApp | |-- File1.html | |-- Directory1 ||-- File2.html| |-- META-INF |-- File3.html You want to know whether File1.html, File2.html, and/or File3.html will be directly accessible by your webclient’s browsers. Which statement is true?()
第14题:
How can a directory be excluded from a mksysb backup()
第15题:
Given a correctly compiled class whose source code is: package com.sun.sjcp; public class Commander { public static void main(String[] args) { // more code here } } Assume that the class file is located in /foo/com/sun/sjcp/, the current directory is /foo/, and that the classpath contains “.“ (current directory). Which command line correctly runs Commander?()
第16题:
Which gets the name of the parent directory file “file.txt”?()
第17题:
10. class MakeFile { 11. public static void main(String[] args) { 12. try { 13. File directory = new File(”d”); 14. File file = new File(directory,”f”); 15. if(!file.exists()) { 16. file.createNewFile(); 17. } 18. } catch (IOException e) { 19. e.printStackTrace 20. } 21. } 22. } The current directory does NOT contain a directory named “d.” Which three are true?()
第18题:
Put an entry in the /etc/exclude.rootvg file.
Put an entry in the /etc/mksysb.exclude file.
Remove the directory’s entry from the mksysb /image.data file.
Remove the directory’s entry from the /var/adm/ras/bosinst.data file.
第19题:
Line 16 is never executed.
An exception is thrown at runtime.
Line 13 creates a File object named “d”.
Line 14 creates a File object named “f‟.
Line 13 creates a directory named “d” in the file system.
Line 16 creates a directory named “d” and a file “f” within it in the file system.
Line 14 creates a file named f inside of the directory named “d” in the file system.
第20题:
Compilation fails.
Nothing is added to the file system.
Only a new file is created on the file system.
Only a new directory is created on the file system.
Both a new file and a new directory are created on the file system.
第21题:
A file system cannot be mounted on a directory containing data.
Mounting a file system on a mount point containing data will delete the data.
Mounting a file system on a amount point containing data will make the data temporarily inaccessible.
A systems administrator must manually create an empty directory prior to mounting an AIX JFS.
第22题:
All three files are directly accessible.
Only File1.html is directly accessible.
Only File2.html is directly accessible.
Only File3.html is directly accessible.
第23题:
Create an asmx file and add a @ServiceHost directive to this file. Copy the file to the root of the application directory.
Create an .asmx file and add a @Register directive to this file. Copy the file to the bin directoyy of the application.
Create a svc file and add a @ServiceHost directive to this file. Copy the file to the root of the application directory.
Create a .svc file and add a @Register directive to this file. Copy the file to the bin directory of the application.