Java中的路径 isAbsolute() 方法及示例
Java Path 接口在Java 7 中被添加到Java Java .nio.file.Path 的isAbsolute()方法用于检查此路径是否为绝对路径。当且仅当此路径是绝对路径时,此方法才返回 true。绝对路径是不需要与其他路径信息组合来定位文件的路径。
句法:
boolean isAbsolute()
参数:此方法不接受任何内容。
返回值:当且仅当此路径是绝对路径时,此方法才返回 true。
下面的程序说明了 isAbsolute() 方法:
方案一:
// Java program to demonstrate
// java.nio.file.Path.isAbsolute() method
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
public static void main(String[] args)
throws IOException
{
// create an object of Path
Path path
= Paths.get("D:\\eclipse\\configuration"
+ "\\org.eclipse.update");
// call isAbsolute() to get check
// path is absolute or not
boolean isAbsolute = path.isAbsolute();
// print isAbsolute
System.out.println("Path is Absolute: "
+ isAbsolute);
}
}
输出:
方案二:
// Java program to demonstrate
// java.nio.file.Path.isAbsolute() method
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
public static void main(String[] args)
throws IOException
{
// create object of Path
Path path = Paths.get("temp\\Spring");
// call isAbsolute() to get check
// path is absolute or not
boolean isAbsolute = path.isAbsolute();
// print isAbsolute
System.out.println("Path is Absolute: "
+ isAbsolute);
}
}
输出:
参考资料: https: Java/nio/file/Path.html#isAbsolute()