Java URL.getContent()
Syntax
URL.getContent() has the following syntax.
public final Object getContent() throws IOException
Example
In the following code shows how to use URL.getContent() method.
import java.net.URL;
/*w w w . j a v a 2s.com*/
public class Main {
public static void main(String args[]) throws Exception {
URL u = new URL("http://www.java2s.com");
Object o = u.getContent();
System.out.println( o.getClass().getName());
}
}
The code above generates the following result.