请完成下列语句中应填的内容; File pathName=new File(orgs[0]); String[]file Names=path Name. ______;
举一反三
- 下列程序的功能是显示用户在命令行方式下指定的任意驱动器目录,请补充程序。 import java.iO.*; public class FindDirectories { public static void main (String args[ ]) { if(args.length= =0) args=new String[ ]".."}; try { File pathName=new File(args [0]); String[]fileName=pathName.list( ); for(int i=0;<fileName.length;i+ += { File f=new 【 】 if(f.isDirectory( )) { System.out.println(f.getCanonicalPath( )); main(new String[ ] { f.getPath( ) }); } } = catch(IOException e) { e.printStackTrace( ); } = =
- 阅读下面的程序public class Example {public static void main(String[] args) throws Exception {// 创建File对象File file = new File("d:\\cn\\itcast");// 判断File对象对应的目录是否存在if (file.isDirectory ()) {// 获得目录下的所有文件的文件名String[] names = file.____();for (String name : names) {System.out.println(name); // 输出文件名}}}}请填写空白处的代码,使程序打印出itcast文件夹下每个文件或目录的名称。
- 能够获得文件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();
- 以下哪条语句可以获取文件"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();
- 以下通过JSP的include指令来引入这些抽取出的JSP页面方式正确的是() 未知类型:{'options': ['[%@include file="head.jsp"%]', '[% @include file="head.jsp"%]', '[%@ include file="head.jsp"%]', '[ %@include file="head.jsp"% ]'], 'type': 102}