假设在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());
}
}
}
class Example {
public static void main(String[] args) {
File file = new File("E:\cn"); // 这是一个代表目录的File对象
if (file.exists()) {
System.out.println(file.delete());
}
}
}
举一反三
- 如果在一台 PC 机的c:\source目录运行如下代码: import java.io.*; class Path { public static void main(String[] args) throws Exception { File file = new File('Ran.test'); System.out.println(file.getAbsolutePath()); } } 则,期望的输出结果为?
- 阅读下面的程序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文件夹下每个文件或目录的名称。
- 下列程序运行后的结果可能是________。import java. io. *;public class Test { public static void main (String [] args) { File file =new File ( "hello . txt" ) ; if (file. exists () ) { file.delete () ; } else { try { file . createNewFile ( ) ; } catch (Exception e ) { e .printStackTrace ( ) ; } } }} A: 如果文件不存在 ,则程序退出 B: 如果文件已经存在 , 则程序退出 C: 如果文件已经存在,则保留该文件 D: 如果文件不存在 , 则创建该文件
- ( File 类)有如下代码: public class TestFile{ public static void main(String args[]){ File file = new File(“chp1 1 /corejava.txt”); } } 请选择一个正确答案:
- 创建一个d盘aa文件夹下news.txt文件对象,以下正确的是 A: File file = new File("d:/aa"); B: File file = new File("d:/aa/news.txt"); C: File file = new File("d:/news.txt"); D: File file = new File("d:\aa\news.txt");