Java File getAbsoluteFile()方法

java.io.File.getAbsoluteFile() 方法返回此抽象路径名的绝对形式。

1 语法

public File getAbsoluteFile()

2 参数

3 返回值

该方法返回定义同一个文件的绝对抽象路径名。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.File.getAbsoluteFile()方法的例子
 */
import java.io.File;

public class Demo {
    public static void main(String[] args) {
        File f = null;
        File f1 = null;
        String path = "";
        boolean bool = false;

        try {
            // create new files
            f = new File("test.txt");

            // create new file in the system
            f.createNewFile();

            // create new file object from the absolute path
            f1 = f.getAbsoluteFile();

            // returns true if the file exists
            bool = f1.exists();

            // returns absolute pathname
            path = f1.getAbsolutePath();

            // if file exists
            if(bool) {

                // prints
                System.out.print(path+" Exists? "+ bool);
            }

        } catch(Exception e) {
            // if any error occurs
            e.printStackTrace();
        }
    }
}

输出结果为:

D:\idea_workspace\yiidian\demo\test.txt Exists? true

热门文章

优秀文章