📜  Java中的文件 getPath() 方法和示例

📅  最后修改于: 2022-05-13 01:55:44.802000             🧑  作者: Mango

Java中的文件 getPath() 方法和示例

getPath()方法是 File 类的一部分。此函数返回给定文件对象的路径。该函数返回一个字符串对象,其中包含给定文件对象的路径。

函数签名:

public String getPath()

函数语法:

file.getPath()

参数:此函数不接受任何参数。

返回值:该函数返回一个字符串值,它是给定文件对象的路径。

下面的程序将说明 getPath()函数的使用:

示例1:给定一个文件的文件对象,我们要获取文件对象的路径。

// Java program to demonstrate the
// use of getPath() function
  
import java.io.*;
  
public class solution {
    public static void main(String args[])
    {
  
        // try catch block to handle exceptions
        try {
  
            // Create a file object
            File f
                = new File("c:\\users\\program.txt");
  
            // Get the path of the given file f
            String path = f.getPath();
  
            // Display the file path of the file object
            System.out.println("File path : " + path);
        }
        catch (Exception e) {
            System.err.println(e.getMessage());
        }
    }
}

输出:

File path : c:\users\program.txt

例2:给定一个目录的文件对象,我们要获取文件对象的路径。

// Java program to demonstrate the
// use of getPath() function
  
import java.io.*;
  
public class solution {
    public static void main(String args[])
    {
  
        // try catch block to handle exceptions
        try {
  
            // Create a file object
            File f = new File("c:\\users\\program");
  
            // Get the path of the given file f
            String path = f.getPath();
  
            // Display the file path of the file object
            System.out.println("File path : " + path);
        }
        catch (Exception e) {
            System.err.println(e.getMessage());
        }
    }
}

输出:

File path : c:\users\program

这些程序可能无法在在线 IDE 中运行。请使用离线IDE并设置文件路径