Read a GIF or CLASS from an URL and save it locally : URLConnection « Network « Java Tutorial






import java.io.DataInputStream;
import java.io.FileOutputStream;
import java.net.URL;
import java.net.URLConnection;

public class Main {
  public static void main(String args[]) throws Exception {
    byte[] b = new byte[1];
    URL url = new URL("http://www.server.com/a.gif");
    URLConnection urlConnection = url.openConnection();
    urlConnection.connect();
    DataInputStream di = new DataInputStream(urlConnection.getInputStream());

    FileOutputStream fo = new FileOutputStream("a.gif");
    while (-1 != di.read(b, 0, 1))
      fo.write(b, 0, 1);
    di.close();
    fo.close();
  }
}








19.3.URLConnection
19.3.1.All Headers
19.3.2.Chain the InputStream to a Reader
19.3.3.Get files updated last 24 hours
19.3.4.Encoding Aware Source Viewer
19.3.5.Call a servlet from a Java command line application
19.3.6.Read from a URL with buffered stream
19.3.7.Sending a POST Request Using a URL
19.3.8.Read a GIF or CLASS from an URL and save it locally