Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-12-2009, 11:46 PM
Member
 
Join Date: Nov 2008
Posts: 3
Rep Power: 0
happyday is on a distinguished road
Default how can i save an image from url
Hi everyone ,
Maybe this is a simple question for someone but i would like to know how can i save an image from a http url and save it in a jpg file somehwere in the disk, in fact will save it in database.
Can anyone tell me any example ?
Thanks in advance !
Bookmark Post in Technorati
Reply With Quote
  #2 (permalink)  
Old 01-13-2009, 01:31 AM
Senior Member
 
Join Date: Nov 2008
Posts: 265
Rep Power: 1
neilcoffey is on a distinguished road
Default
Essentially, you:
- construct a URL with your URL
- call openConnection(), then call getInputStream() on the resulting URLConnection object
- pull out the data from the input stream as with any old input stream, probably wrapping a BufferedInputStream around it

A while ago I put up on my web site an example of reading data from a URL in Java, which covers this case of binary data, plus the case of reading character data.
__________________
Neil Coffey

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 01-14-2009, 07:02 PM
Member
 
Join Date: Jan 2009
Posts: 25
Rep Power: 0
poroto20 is on a distinguished road
Default
You can do it only with 1 line:

Code:
FileUtils.copyURLToFile(new URL(....), new File(....));
You have to include commons-io.jar from Apache
Bookmark Post in Technorati
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to save image to disk after using pixelgrabber shishirg Advanced Java 5 02-28-2009 02:45 PM
Save a jpg image on server yadavjpr Java Servlet 1 11-21-2008 01:49 PM
how to save image as jpg? katie New To Java 2 08-06-2007 03:32 AM


All times are GMT +2. The time now is 12:40 PM.



VBulletin, Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2009, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org