如何在 Java 中使用 Desktop.getDesktop().browse(new URI(...)) 在首选位置和大小打开浏览器?
我使用 Desktop.getDesktop().browse(new URI(...))
在 Java 中打开浏览器。浏览器的位置和大小由上次打开和关闭的时间决定。
有没有办法告诉浏览器打开,例如:x=100,y=200,w=300,h=500,所以它总是根据我的喜好打开?
I use Desktop.getDesktop().browse(new URI(...))
to open a browser in Java. The browser's location and size is determined by the last time it was opened and closed.
Is there a way to tell the browser to open at, for instance :x=100, y=200, w=300, h=500, so it always opens according to my preference ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了一个示例,展示了如何使用 JEditorPane“制作”一个简单的浏览器。也许可以提供帮助。看一下:
http://www .apl.jhu.edu/~hall/java/Swing-Tutorial/Swing-Tutorial-JEditorPane.html
希望对您有所帮助。祝你好运。
I found an example that show how can you use a JEditorPane "to make" a simple browser. Maybe can help. Take a look at:
http://www.apl.jhu.edu/~hall/java/Swing-Tutorial/Swing-Tutorial-JEditorPane.html
Hope help you. Good luck.