I am currently trying to open a web page from an application. I have experience with I/O stream connections to web pages but not opening up the web page. BrowserLauncher was suggested to me, so I downloaded the BrowserLauncher class. I then tried to use test code to see if it would work. The BrowserLauncher class compiled, but my test class did not (this test class basically instanciated BrowserLauncher and called its openURL method to open a web page). When I tried to compile the test class, the Java compiler threw an exception that read "BrowserLauncher()
has private access in BrowserLauncher BrowserLauncher bl = new BrowserLauncher()." I was wondering if anyone had any ideas as why BrowserLauncher wasn't working or any other ideas on how to open up web pages in an application. Thanks.