Example

try {
  URL u = new URL("http://www.sdexpo.com/");
  URLConnection uc = u.openConnection();
  uc.connect();
  String key=null;
  for (int n = 1; 
       key=uc.getHeaderFieldKey(n)) != null; 
       n++) {
    System.out.println(key + ": " + uc.getHeaderField(key));
  }
}
catch (IOException e) {
 System.err.println(e);
}


Previous | Next | Top | Cafe con Leche

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