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) {

        // create new file
        File f = new File("c:/text.txt");

        // true if the file is executable
        boolean bool = f.canExecute();

        // find the absolute path
        String a = f.getAbsolutePath();

        // prints absolute path
        System.out.print(a);

        // prints
        System.out.println(" is executable: " + bool);

    }
}