中国大学MOOC: 若某个Java源程序中有语句File a=new File(lianxi.txt);如果lianxi.txt已经存在,在eclipse中,该文件( )。
举一反三
- 若某个Java源程序中有语句File a=new File("lianxi.txt");如果lianxi.txt已经存在,在eclipse中,该文件( )。 A: 和Java源程序在同一路径下 B: 和src文件夹在同一路径下 C: 可以存放在任意路径下 D: 因为没有给定盘符信息,无法存放
- 若某个Java源程序中有语句File a=new File("lianxi.txt");如果lianxi.txt已经存在,在eclipse中,该文件( )。 A: 和Java源程序在同一路径下 B: 和src文件夹在同一路径下 C: 可以存放在任意路径下 D: 因为没有给定盘符信息,无法存放
- 中国大学MOOC: File a=new File(D:\datalianxi.txt);如果D盘中没有data文件夹,也没有lianxi.txt,则执行a.createNewFile();程序会( )。
- 下列程序运行后的结果可能是________。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: 如果文件不存在 , 则创建该文件
- 中国大学MOOC: File file=new file(“a.txt”);其中 a.txt这个文件必须存在。( )