1 | First you set the URL in various ways using something like |
2 | String npacurl = "http://www.npac.syr.edu/index.html"; |
3 | try { theinputurl = new URL(npacurl); } // URL class is in java.net |
4 |
catch ( MalformedURLException e) {
|
5 | where you are meant to test to see if URL is legal! |
6 | The simplest thing to do now is to see this page with |
7 | getAppletContext().showDocument(theinputurl, Frame targetdisplayframe); |