Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.net.URI;
import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {
    public static void main(String[] args) throws Exception {
        Path path = Paths.get(new URI("C:/home/./music/users.txt"));
        System.out.println(path);
        System.out.println("Normalized: " + path.normalize());
    }
}