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("test.txt");

        // set executable()
        boolean bool = f.setExecutable(true, true);

        System.out.println("setExecutable() succeeded?: " + bool);

        // can execute
        bool = f.canExecute();

        System.out.print("Can execute?: " + bool);

    }
}