Write a Java program that reads a file name from the user, displays information about whether the file exists, whether the file is readable, or writable, the type of file and the length of the file in bytes.
*/
import java.io.*;
class FileHandling
{
public static void main(String as[]) throws IOException
{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));