Java File getAbsolutePath()方法
java.io.File.getAbsolutePath() 方法返回此抽象路径名的绝对路径名字符串。
1 语法
public String getAbsolutePath()
2 参数
无
3 返回值
该方法返回的绝对路径名表示同一的文件或目录。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.File.getAbsolutePath()方法的例子
*/
import java.io.File;
public class Demo {
public static void main(String[] args) {
File f = null;
String path = "";
boolean bool = false;
try {
// create new files
f = new File("test.txt");
// returns true if the file exists
bool = f.exists();
// if file exists
if(bool) {
// get absolute path
path = f.getAbsolutePath();
// prints
System.out.print("Absolute Pathname "+ path);
}
} catch(Exception e) {
// if any error occurs
e.printStackTrace();
}
}
}
输出结果为:
Absolute Pathname D:\idea_workspace\yiidian\demo\test.txt
热门文章
优秀文章