当前位置 : 主页 > 编程语言 > java >

java142-file类的基本创建

来源:互联网 收集:自由互联 发布时间:2022-07-13
//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
//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==null );
//无论给定的文件虚拟路径是否存在
//创建file在java中是不为空,但是文件创建成功,但是这个
//文件不一定在硬盘上存在
}
}

运行结果

java142-file类的基本创建_虚拟路径

 



上一篇:java153-字符输出流
下一篇:没有了
网友评论