What is the purpose of the File class?
Answers were Sorted based on User's Feedback
Answer / ranganathkini
The java.io.File class abstracts a filename and directory
pathnames. It provides useful methods to perform some basic
filesystem operations such as, verifying the existance of a
file, getting the absolute or relative path of a file,
verifying if a path refers to a directory or file, verifying
the permissions on a File, checking the file length,
create/remove folders, etc.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / ravikiran
fileclass is used to read or write data from and to the file
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / letsapa
can be used to find information about a file, such as
whether it exist or is open, its size, and its, last
modification
| Is This Answer Correct ? | 3 Yes | 0 No |
Write a method that will remove given character from the string?
What is initial size of arraylist in java?
What is a for loop in java?
We have two methods to create methods the threads. 1. Implementing runnable interface 2. Extending to thread class and overriding run method. Among these two which one is better and why? Please explain me in detail.
What are java methods?
If I don't provide any arguments on the command line, then what will the value stored in the string array passed into the main() method, empty or null?
Is it possible for yielded thread to get chance for its execution again ?
How will you reverse a link list without using recursion?
What is java reflection?
What does %d do in java?
Can we change the scope of the overridden method in the subclass?
What is the static keyword?