import java.io.File;import java.io.IOException;public class Test2{    public static void main(String[] args)  throws IOException    {        File file = new File("D://cola","test.txt");        if(file.exists()){            file.delete();        }        file.createNewFile();        System.out.println(file.canWrite()+"-----------------------------能否写");            System.out.println(file.getAbsoluteFile()+"-------------------------返回文件的绝对路径包括文件名");                System.out.println(file.getAbsolutePath()+"--------------------------同上");                System.out.println(file.getName()+"---------------------------------得到文件名");                System.out.println(file.getParent()+"--------------------------------返回父目录的路径,没有返回null");        String path = file.getAbsolutePath();        System.out.println(path.replace(file.getName(),"")+"***************************************");    }}