Open Stream from URL : Stream « File « Java Tutorial






import java.net.*;
import java.io.*;

public class MainClass {

  public static void main(String[] args) throws IOException {

    InputStream in = null;
    try {
      URL u = new URL("http://www.java2s.com");
      in = u.openStream();
      for (int c = in.read(); c != -1; c = in.read()) {
        System.out.write(c);
      }
      in.close();
    } 
    catch (MalformedURLException ex) {
      System.err.println("not a URL Java understands.");
    }
    finally {
      if (in != null) in.close();
    }
  }
}








11.6.Stream
11.6.1.Understanding Streams
11.6.2.Stream Copier
11.6.3.File typer
11.6.4.File copier
11.6.5.Open Stream from URL