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

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

java.io.File.getPath() 方法將抽象路徑名到路徑名字符串。為了分離名稱的序列所產生的字符串使用默認名稱分隔符。

聲明

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

public String getPath()

參數

  • NA

返回值

該方法返回此抽象路徑名的路徑名字符串的形式。

異常

  • NA

例子

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

package com.yiibai;

import java.io.File;

public class FileDemo {
   public static void main(String[] args) {
      
      File f = null;
      String v;
      boolean bool = false;
      
      try{
         // create new file
         f = new File("test.txt");
         
         // pathname string from abstract pathname
         v = f.getPath();
         
         // true if the file path exists
         bool = f.exists();
         
         // if file exists
         if(bool)
         {
            // prints
            System.out.print("pathname: "+v);
         }
      }catch(Exception e){
         // if any error occurs
         e.printStackTrace();
      }
   }
}

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

pathname: test.txt