How to open a browser window in Java without the addressbar
Is there any way to open a new window in Java without the addressbar? I'm looking for a Java API similiar to the JavaScript window.open() where you can specify the new window "features".
I know I can use Desktop.browse() or even the more adavance BrowserLauncher2, Still both APIs don't give me the option开发者_Go百科 to specify any features for the new browser window.
You can try Lobo. If the API doesn't meet your needs, you can use their source code to write your own browser.
精彩评论