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

I would like to implement a function where you send a URL of a photo and my server will automatically download and store it in a specified folder.

I studied some use cases, but as a beginner in this area of the web, I was a bit lost. I thought about FTP but is not exactly what I want.

Like that, function on my webservice (using Java + Tomcat + AXIS2)

     void getPhoto(URL url){
       //receive a photo and store at folder /photos 
     }  

but, I don't know what use, I was looking for some httppost or httpget, should I still looking for in this way? Has a dummie sample, to show me the basic way?

share|improve this question

3 Answers

I would like to implement a function where you send a URL of a photo and my server will automatically download and store it in a specified folder.

That's not exactly "uploading", but just "downloading".

Just call openStream() on the URL and you've an InputStream which you can do anything with. Writing to a FileOutputStream for example.

InputStream input = url.openStream();
// ...
share|improve this answer

You want to look at using an HttpURLConnection, call it's 'connect' and 'getInputStream' methods, continually reading from that stream and writing that data to a file with e.g. a FileOutputStream.

share|improve this answer

To download a file using a URL, as an alternative to what suggested by others, you can take a look to Apache Commons HttpClient.

There is also a well written tutorial.

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.