VOOZH about

URL: https://www.geeksforgeeks.org/java/java-file-class-tostring-method-with-examples/

⇱ Java File Class toString() Method with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java File Class toString() Method with Examples

Last Updated : 8 Mar, 2022

This method returns the pathname string of the File object is returned by the function toString() function. This method is the same as calling the Java IO getPath() method.

Package view is as follows:

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

Syntax:

public String toString()

Return Type: A string form of this abstract pathname.

Exceptions Thrown: SecurityException is thrown when we don't have access to a file or directory.

Implementation: Prints the results of the function toString() function on numerous File objects in this example code.

  • Create file instance new File("GeeksForGeeks.txt");
  • file.toString(); It will convert the specified pathname into the string.

Example:

Output: Generated on Powershell/ Terminal

👁 Image
Comment
Article Tags: