Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.io.File;
import java.net.URI;

public class Main {
    public static void main(String[] a) throws Exception {

        File remoteFile = new File(new URI("file:///index.htm"));
        System.out.println(remoteFile);
    }
}