下列程序运行后的结果可能是________。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: 如果文件不存在 , 则创建该文件
A: 如果文件不存在 ,则程序退出
B: 如果文件已经存在 , 则程序退出
C: 如果文件已经存在,则保留该文件
D: 如果文件不存在 , 则创建该文件
举一反三
- 假设在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()); } } }
- 阅读下面的程序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文件夹下每个文件或目录的名称。
- 下面的程序创建了一个文件输出流对象,用来向文件test.txt中输出数据,假设程 序当前目录下不存在文件test.txt,编译下面的程序Test.java后,将该程序运行3次,则文件test.txt 的内容是? import java.io.*; public class Test { public static void main(String args[]) { try { String s="ABCDE "; byte b[]=s.getBytes(); FileOutputStream file= new FileOutputStream("test.txt",true); file.write(b); file.close(); } catch(IOException e) { System.out.println(e.toString()); } } }
- 如果在一台 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()); } } 则,期望的输出结果为?
- 中国大学MOOC: 若某个Java源程序中有语句File a=new File(lianxi.txt);如果lianxi.txt已经存在,在eclipse中,该文件( )。