Java文件类 toString() 方法及示例
此方法返回 File 对象的路径名字符串,由函数toString()函数返回。此方法与调用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/终端上生成