Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.io.File;

public class Main {
    public static void main(String[] args) {

        File f = new File("c:/test.txt");

        // returns true if the file can be read
        boolean bool = f.canRead();

        System.out.print("File can be read: " + bool);

    }
}