Here you can find the source of getAbsolutePath(String name)
public static Path getAbsolutePath(String name)
//package com.java2s; //License from project: Apache License import java.nio.file.Path; import java.nio.file.Paths; public class Main { public static Path getAbsolutePath(String name) { return Paths.get(name).toAbsolutePath(); }/*from w w w . jav a 2 s. co m*/ }