Javax Net Java by API

/*
 * Output:
 * 


     Java examples (example source code) Organized by topic 
        
    
    
    
    
    

...
...
 */
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;
public class MainClass {
  public static void main(String args[]) throws Exception {
    int c;
    URL hp = new URL("http", "www.rntsoft.com", 80, "/");
    URLConnection hpCon = hp.openConnection();
    if (hpCon.getContentLength() > 0) {
      InputStream input = hpCon.getInputStream();
      int i = hpCon.getContentLength();
      while (((c = input.read()) != -1) && (--i > 0)) {
        System.out.print((char) c);
      }
      input.close();
    } else {
      System.out.println("No Content Available");
    }
  }
}