Here you can find the source of isAbsoluteURL(String url)
static public boolean isAbsoluteURL(String url)
//package com.java2s; //License from project: Open Source License public class Main { static public boolean isAbsoluteURL(String url) { return url != null && url.indexOf("://") >= 0; }//from ww w. jav a2 s . c o m }