home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / JavaByExample / chap30 / lst30_1.txt < prev    next >
Encoding:
Text File  |  1996-03-19  |  198 b   |  13 lines

  1. try
  2. {
  3.     URL url = new URL(str);
  4.     AppletContext context = getAppletContext();
  5.     context.showDocument(url);
  6. }
  7. catch (MalformedURLException e)
  8. {
  9.     badURL = true;
  10.     repaint();
  11. }
  12.  
  13.