Test.java Source code

Java tutorial

Introduction

Here is the source code for Test.java

Source

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

public class Test {

    public static void main(String[] args) throws Exception {
        Path zip = Paths.get("/usr/bin/zip");
        System.out.println(zip.toAbsolutePath().toString());
    }
}