How do you load an HTML page from an Applet

Showing Answers 1 - 1 of 1 Answers

ammasmohan

  • Oct 4th, 2005
 

Applets are executed within a web browser, and there's an easy way to load show a specific URL. 1. Get a reference to the applet context 2. Call the showDocument method with a URL object as parameter. The following code snippet shows you how this can be done. public class anApplet extends Applet { //the applet code goes here // Show a page public void showPage (String aPage) //aPage should contained address of the HTML page to be shown { URL url = null; // Create URL object try { url = new URL (aPage); } catch (MalformedURLException e) { //handle exception } // Show URL if (url != null) { getAppletContext().showDocument (url); } } } source:http://www.devx.com/tips/Tip/13655

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions