Mega Code Archive

 
Categories / Java Tutorial / Network
 

Get Content from a URL

import java.net.URL; public class MainClass {   public static void main(String[] args) {     try {       URL u = new URL("http://www.rntsoft.com");       Object o = u.getContent();       System.out.println("I got a " + o.getClass().getName());     } catch (Exception ex) {       System.err.println(ex);     }   } }