要判断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))
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盘下是否存在文件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盘下是否存在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
- 当前目录下有以下目录 a,ab,abc;有以下文件 a.txt,ab.txt , abc.txt;执行 rm a* 后,删除了哪些? A: a.txt , ab.txt, abc.txt B: a,ab ,abc C: ab,ab.txt D: a,ab , abca.txt , ab.txt ,abc.txt