Is there any merit (coding style, OOP best practice, etc.) in working with an instance of java.net.URL as opposed to java.lang.String when I can be reasonably certain that a URL is valid anyway (perhaps I've specified it statically in a properties file) and I will just be working with it in its string form anyway (for example printing it in a JSP file)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
|
|||||||
|
|
You will get many method support in case or URL. but if its just to display then go for String you can always build URL from valid String |
|||
|
|
Well the URL class has lots of methods that let you manipulate the url, for example get the host, the path and a dozen other things. You can also open a connection to the URL and fetch the document if you need. |
|||
|
|