Java URI Value Check isAbsoluteURI(String path)

Here you can find the source of isAbsoluteURI(String path)

Description

is Absolute URI

License

Open Source License

Declaration

public static boolean isAbsoluteURI(String path) 

Method Source Code

//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
}

Related

  1. isAbsoluteURI(String uri)
  2. isAbsoluteUri(String uriAsString)
  3. isAnyAddress(final URI u)
  4. isAvailable(URI address)