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[] argv) throws Exception {

        File file = new File("filename.txt");
        file = file.getAbsoluteFile();
    }
}