Java.io.File.isAbsolute()方法實例
java.io.File.isAbsolute() 檢查此抽象路徑名是否是絕對的。
聲明
以下是java.io.File.isAbsolute()方法的聲明:
public boolean isAbsolute()
參數
- NA
返回值
如果此抽象路徑名是絕對的該方法返回true,否則該方法返回false。
異常
- NA
例子
下面的示例演示java.io.File.isAbsolute()方法的用法。
package com.yiibai; import java.io.File; public class FileDemo { public static void main(String[] args) { File f = null; String path; boolean bool = false; try{ // create new file f = new File("C:\test.txt"); // true if the file path is absolute, else false bool = f.isAbsolute(); // get the path path = f.getPath(); // prints System.out.println(path+" is absolute? "+ bool); // create new file f = new File("test.txt"); // true if the file path is absolute, else false bool = f.isAbsolute(); // get the path path = f.getPath(); // prints System.out.print(path+" is absolute? "+bool); }catch(Exception e){ // if any error occurs e.printStackTrace(); } } }
讓我們編譯和運行上面的程序,這將產生以下結果:
C: est.txt is absolute? true test.txt is absolute? false