Here you can find the source of isAbsolutePath(String path)
public static boolean isAbsolutePath(String path)
//package com.java2s; //License from project: Apache License public class Main { public static boolean isAbsolutePath(String path) { return path.startsWith("/"); }/*from w w w . j av a 2 s . c o m*/ }