| A simple, static class to display an URL in the system browser.
Under Windows, this will bring up the default browser, usually either
Netscape or Microsoft IE. The default browser is determined by the OS. This
has been tested under: Windows 95/98/NT/2000.
Under MacOS, this will bring up the default browser. The default browser is
determined by the OS. This has been tested under: n/a
In other cases (and under Unix), the system browser is hard-coded to be
'netscape'. Netscape must be in your PATH for this to work. This has been
tested with the following platforms: AIX, HP-UX and Solaris.
Examples: * BrowserControl.displayURL("http://www.javaworld.com")
BrowserControl.displayURL("file://c:\\docs\\index.html")
BrowserContorl.displayURL("file:///user/joe/index.html");
Note - you must include the url type -- either "http://" or "file://".
|