Java API Tutorial - 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;
//  www .  jav a 2s . c o m
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.