vote up 0 vote down star

I need to load an image from a web in a simple Java stand alone aplication. Any Ideas?

flag

4 Answers

vote up 0 vote down check
URL url = new URL("http://host/theimage.jpg");
URLConnection conn = new URLConnection(url);
InputStream in = conn.getInputStream();

is that enough to start you? Don't know what you want to do from there.

link|flag
vote up 5 vote down

You can load an image using

BufferedImage img = ImageIO.read(new URL("http://stackoverflow.com/content/img/so/logo.png"));

For methods how to display the loaded image, see the Sun "Working with images" tutorial.

link|flag
vote up 1 vote down

See ImageIO.read(URL).

link|flag
vote up 1 vote down

I would take a look at HTTPClient.

Find the URL to the image, and you can get an inputstream feeding you the image data, plus you'll get the content-type etc. so you can correctly handle it once you've downloaded it.

Here's some sample code. You may also need to call getResponseHeaders() on the GetMethod to identify the image type.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.