- package cn.hello;
- import java.io.File;
- /*
- * IO流
- * FIle类
- * 构造方法:
- * File(String pathname) :根据路径得到File对象
- * File(String pathname(目录),String chile) :根据一个目录和一个子文件(或者目录)得到File对象
- * File(File parent,String chile) :根据一个File对象和一个子文件或者目录得到File对象
- *
- * */
- public class Test01 {
- public static void main(String[] args) {
- File file=new File("d:\\zf\\hello.txt"); //这个路径所指向的未必真实存在
- File file2=new File("d:'\\zf","hello.txt");
-
- File file3=new File("d:\\zf");
- File file4=new File(file3,"hello.txt");
- }
- }
复制代码
|
|