Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

public class Main {

    public static void main(String[] args) {

        Path path = Paths.get("C:", "tutorial/Java/JavaFX", "Topic.txt");

        //convert relative path to absolute path
        Path path_to_absolute_path = path.toAbsolutePath();
        System.out.println("Path to absolute path: " + path_to_absolute_path.toString());
    }
}