How can I check in Java if a file exists on a remote server (served by HTTP), having his url? I don't want to download the file, just check his existance.
Thanks
|
How can I check in Java if a file exists on a remote server (served by HTTP), having his url? I don't want to download the file, just check his existance. Thanks |
|||||||||
|
If the connection to a URL (made with HttpURLConnection) returns with HTTP status code 200 then the file exists. EDIT: Note that since we only care it exists or not there is no need to request the entire document. We can just request the header using the HTTP HEAD request method to check if it exists. |
|||||||
|
|
|||
|
|
|
The only true way is to download it :). On some servers usually you can get away by issuing a HEAD request insted of a GET request for the same url. This will return you only the resource metadata and not the actual file content. Update: Check org.life.java's answer for the actual technical details on how to do this. |
|||
|
|
|
Assuming the file is being served through http, you can send a HEAD request to the URL and check the http response code returned. |
|||
|
|
|
Make a URLConnection to it. If you succeed, it exists. You may have to go so far as opening an input stream to it, but you don't have to read the contents. You can immediately close the stream. |
|||
|
|