Java中要判断D盘下是否存在ab.txt文件,应该使用()。 A: if(new File(“d:ab.txt”).exists()==1) B: if(File.exists(“d:ab.txt”)==1) C: if(new File(“d:/ab.txt”).exists()) D: if(File.exists(“d:/ab.txt”))
Java中要判断D盘下是否存在ab.txt文件,应该使用()。 A: if(new File(“d:ab.txt”).exists()==1) B: if(File.exists(“d:ab.txt”)==1) C: if(new File(“d:/ab.txt”).exists()) D: if(File.exists(“d:/ab.txt”))
在JAVA中,要判断D盘下是否存在文件abc.txt,应该使用以下( )判断语句。 A: if(new File(“d:abc.txt”) .exists() = =1) B: if(File.exists(“d:abc.txt”) = =1) C: if(new File(“d:/abc.txt”) .exists( ) ) D: if(File.exists(“d:/abc.txt))
在JAVA中,要判断D盘下是否存在文件abc.txt,应该使用以下( )判断语句。 A: if(new File(“d:abc.txt”) .exists() = =1) B: if(File.exists(“d:abc.txt”) = =1) C: if(new File(“d:/abc.txt”) .exists( ) ) D: if(File.exists(“d:/abc.txt))
要判断D盘下是否存在文件abc.txt,应该使用以下()判断语句。 A: if(newFile(“d:abc.txt”).exists()==1) B: if(File.exists(“d:abc.txt”)==1) C: if(newFile(“d:/abc.txt”).exists()) D: if(File.exists(“d:/abc.txt))
要判断D盘下是否存在文件abc.txt,应该使用以下()判断语句。 A: if(newFile(“d:abc.txt”).exists()==1) B: if(File.exists(“d:abc.txt”)==1) C: if(newFile(“d:/abc.txt”).exists()) D: if(File.exists(“d:/abc.txt))
假设在E盘下的cn文件夹中有文件abc.txt,则下列代码的运行结果为 class Example { public static void main(String[] args) { File file = new File("E:\cn"); // 这是一个代表目录的File对象 if (file.exists()) { System.out.println(file.delete()); } } }
假设在E盘下的cn文件夹中有文件abc.txt,则下列代码的运行结果为 class Example { public static void main(String[] args) { File file = new File("E:\cn"); // 这是一个代表目录的File对象 if (file.exists()) { System.out.println(file.delete()); } } }
File类中,建立目录的方法是() A: create() B: mkdir() C: exists() D: delete()
File类中,建立目录的方法是() A: create() B: mkdir() C: exists() D: delete()
File类中获取文件绝对路径的方法是() A: getName( ) B: getPath( ) C: getParent( ) D: exists( )
File类中获取文件绝对路径的方法是() A: getName( ) B: getPath( ) C: getParent( ) D: exists( )
File类中判断文件是否存在的方法是 ( )。 A: exists( ) B: getName() C: isFile() D: delete( )
File类中判断文件是否存在的方法是 ( )。 A: exists( ) B: getName() C: isFile() D: delete( )
File类型中定义了什么方法来创建多级目录?( )。 A: createNewFile B: mkdir C: mkdirs D: exists
File类型中定义了什么方法来创建多级目录?( )。 A: createNewFile B: mkdir C: mkdirs D: exists
File类中用来获取文件的名字的函数是( )。 A: list( ) B: exists( ) C: Length() D: getName()
File类中用来获取文件的名字的函数是( )。 A: list( ) B: exists( ) C: Length() D: getName()
File类型中定义了( )方法来判断一个文件是否存在。 A: exists B: createNewFile C: renameTo D: delete
File类型中定义了( )方法来判断一个文件是否存在。 A: exists B: createNewFile C: renameTo D: delete