當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java File toString()用法及代碼示例


該方法返回由函數toString()函數返回的File對象的路徑名字符串。該方法與調用Java IO getPath()方法相同。

包視圖如下:

--> java.io Package
    --> File Class
        --> toString() Method   

用法:

public String toString()

返回類型:此抽象路徑名的字符串形式。

拋出異常:SecurityException當我們無權訪問文件或目錄時拋出。

實現:在此示例代碼中的多個 File 對象上打印函數 toString() 函數的結果。

  • 創建文件實例 new File(“GeeksForGeeks.txt”);
  • 文件.toString();它將指定的路徑名轉換為字符串。

例子:

Java


// Java Program to Illustrate toString() Method 
// of File Class 
  
// Importing required classes 
import java.io.File; 
  
// Class 
public class GFG { 
  
    // Main driver method 
    public static void main(String args[]) 
    { 
  
        // Try block to check for exceptions 
        try { 
  
            // Creating a file 
            File file = new File("GeeksForGeeks.txt"); 
            File txt = new File("./GeeksForGeeks.txt"); 
  
            System.out.println(file.toString()); 
            System.out.println(txt.toString()); 
        } 
  
        // Catch block to handle the exceptions 
        catch (Exception e) { 
  
            // Display exception with line number 
            // using printStackTrace() method 
            e.printStackTrace(); 
        } 
    } 
}

輸出:在 Powershell/終端上生成


相關用法


注:本文由純淨天空篩選整理自sanketnagare大神的英文原創作品 Java File Class toString() Method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。