![]() |
The Java Developers Almanac 1.4Order this book from Amazon. |
e553. Making the Browser Visit a URL// See also e551 The Quintessential Applet try { URL url = new URL(getDocumentBase(), "http://hostname.com/page.html"); applet.getAppletContext().showDocument(url); } catch (MalformedURLException e) { }
e552. Getting an Applet Parameter e554. Showing a Message in the Browser's Status Bar
© 2002 Addison-Wesley. |