位置:首頁 > Java技術 > Java.io包 > Java.io.File.getCanonicalFile()方法實例

Java.io.File.getCanonicalFile()方法實例

java.io.File.getCanonicalFile() 方法返回此抽象路徑名的規範形式。

聲明

以下是java.io.File.getCanonicalFile()方法的聲明:

public File getCanonicalFile()

參數

  • NA

返回值

該方法返回同一個文件或目錄的規範路徑名字符串表示

異常

  • IOException -- 如果發生I/ O錯誤

  • SecurityException -- 如果一個係統屬性值不能被訪問。

例子

下麵的示例演示java.io.File.getCanonicalFile()方法的用法。

package com.yiibai;

import java.io.File;

public class FileDemo {
   public static void main(String[] args) {
      
      File f = null;
      File f1 = null;
      String path = "";
      boolean bool = false;
      
      try{
         // create new files
         f = new File("C:\Program Files\..\test.txt");
         
         // create new canonical form file object
         f1 = f.getCanonicalFile();
         
         // 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();
      }
   }
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

C:	est.txt Exists? true