Package org.apache.any23.util
Class URLUtils
- java.lang.Object
-
- org.apache.any23.util.URLUtils
-
public class URLUtils extends Object
Contains general utility functions for handling URLs.- Author:
- Michele Mostarda (mostarda@fbk.eu)
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanisOnline(String url)Verifies if the specified URL is reachable online.
-
-
-
Method Detail
-
isOnline
public static boolean isOnline(String url) throws MalformedURLException
Verifies if the specified URL is reachable online.- Parameters:
url- input URL.- Returns:
trueif the resource can be accessed,falseotherwise.- Throws:
MalformedURLException- ifurlis malformed.
-
-