//file类的基本创建 import java . io . File ; public class test85 { public static void main ( String [] args ){ //创建文件对象 String filePath = "e:\\1.txt" ; File file = new File ( filePath ); System . out . println ( file == nu
import java.io.File;
public class test85 {
public static void main(String[] args){
//创建文件对象
String filePath="e:\\1.txt";
File file=new File( filePath );
System.out.println( file==null );
//无论给定的文件虚拟路径是否存在
//创建file在java中是不为空,但是文件创建成功,但是这个
//文件不一定在硬盘上存在
}
}
运行结果