Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i check, if a string is an url in java?

share|improve this question

4 Answers

up vote 12 down vote accepted

You can try to create a java.net.URL object out of it. If it is not a proper URL, a MalformedURLException will be thrown.

share|improve this answer
Just to be clear, it would only throw a MalformedURLException if no protocol is specified, or an unknown protocol is found. Unlike, Apache's UrlValidator, no additional validation is performed. – dogbane Oct 14 '10 at 10:44
It actually performs other checks too, e.g. port numbers. – Grodriguez Oct 14 '10 at 10:53
I quoted that from the javadocs download.oracle.com/javase/6/docs/api/java/net/URL.html. They don't state any other checks. – dogbane Oct 14 '10 at 11:05
That's what the Javadocs say, however the checks are performed (you can try it yourself, or have a look at the source code if you wish) – Grodriguez Oct 14 '10 at 11:12

You can use UrlValidator from commons-validator. It will save you from writing code where the logic flow is guided by caching an exception, which is generally considered a bad practice. In this case, however, I think it's fine to do as others suggested, if you move this functionality to an utility method called isValidUrl(..)

share|improve this answer
+1 for being different :) – willcodejavaforfood Oct 14 '10 at 9:17
no need to duplicate others' answers ;) – Bozho Oct 14 '10 at 9:18

I agree with other answers...but I think we can also use a regex for URL to see if the string matches the url pattern.

share|improve this answer
-1 - The linked regex is incorrect. There are valid URLs that it won't match: the general syntax is <scheme>:<scheme-specific-part> for arbitrary schemes, but the regex only matches specific schemes. OTOH, the regex does not capture %xx escaping rules, so it will match invalid URLs. – Stephen C Oct 14 '10 at 10:10
@Stephen..thanks for pointing out..just picked that one from my bookmarks. Removed the incorrect link now. – johnbk Oct 14 '10 at 10:19

Complementing Bozho answer, to go more practical:

  1. Download apache commons package and uncompress it. binaries
  2. Include commons-validator-1.4.0.jar in your java build path.
  3. Test it with this sample code (reference):

    //...your imports

    import org.apache.commons.validator.routines.*; // Import routines package!

    public static void main(String[] args){

    // Get an UrlValidator UrlValidator defaultValidator = new UrlValidator(); // default schemes if (defaultValidator.isValid("http://www.apache.org")) { System.out.println("valid"); } if (!defaultValidator.isValid("http//www.oops.com")) { System.out.println("INvalid"); }

    // Get an UrlValidator with custom schemes String[] customSchemes = { "sftp", "scp", "https" }; UrlValidator customValidator = new UrlValidator(customSchemes); if (!customValidator.isValid("http://www.apache.org")) { System.out.println("valid"); }

    // Get an UrlValidator that allows double slashes in the path UrlValidator doubleSlashValidator = new UrlValidator(UrlValidator.ALLOW_2_SLASHES); if (doubleSlashValidator.isValid("http://www.apache.org//projects")) { System.out.println("INvalid"); }

  4. Run/Debug

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.