在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))
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))
- 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”))
- 要判断D盘下是否存在文件abc.txt,应该使用以下判断语句
- 根据Windows7文件命名规则,下列()文件名是合法的。 A: ABC*.TXT B: #ABC%.TXT C: CO D: TXT E: 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()); } } }