Here you can find the source of isAbsoluteURI(String path)
public static boolean isAbsoluteURI(String path)
//package com.java2s; import java.net.URI; public class Main { public static boolean isAbsoluteURI(String path) { return URI.create(path).isAbsolute(); }//from w w w. j av a 2s. c om }