Search Results

0
votes

Question about URL Validation with Regex

If you read section 5 of the URL specification (http://www.isi.edu/in-notes/rfc1738.txt) you'll see that the syntax of a URL is …
0
votes

Java: How to launch system’s registered application for a URL

Windows it's "start [URI]", OSX it's "open [URI]", Linux has no equivalent as it all depends upon their window manager. As for whether itms:// opens iTunes, that all depends on their config …
7
votes

How do you determine if a file is html from the URL?

You can not. There is nothing wrong with serving up html files with urls that end in .jpeg, or .gif or even .mp3. The only way to know is to fetch the url and view the Content-Type header to see …