如何在没有地址栏的情况下用Java打开浏览器窗口
有没有办法在Java中打开一个没有地址栏的新窗口? 我正在寻找类似于 JavaScript window.open() 的 Java API,您可以在其中指定新窗口“功能”。
我知道我可以使用 Desktop.browse() 甚至更先进的 BrowserLauncher2, 尽管如此,这两个 API 都没有为我提供为新浏览器窗口指定任何功能的选项。
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 to specify any features for the new browser window.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试 Lobo。如果API不能满足您的需求,您可以使用他们的源代码编写您自己的浏览器。
You can try Lobo. If the API doesn't meet your needs, you can use their source code to write your own browser.