For example,

try { 
  URL u = new URL("http://www.sdexpo.com/");
  URLConnection uc = u.openConnection();
  uc.connect(); 
  InputStream in = uc.getInputStream();
  // read the data...
}
catch (IOException e) { //...

Previous | Next | Top | Cafe con Leche

Copyright 1999, 2000 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified July 14, 2000