home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java by Example
/
jbecd.bin
/
JBE-CD
/
NTUsers
/
JBECODE.ZIP
/
JavaByExample
/
chap28
/
lst28_2.txt
< prev
Wrap
Text File
|
1996-03-15
|
230b
|
14 lines
String str = GetURLStringFromUser();
try
{
URL url = new URL(str);
AppletContext context = getAppletContext();
context.showDocument(url);
}
catch (MalformedURLException e)
{
DisplayErrorMessage();
}