您可以将 java 应用程序的窗口标题设置为命令行参数吗?
我已经开始在新的工作场所使用 Ubuntu 桌面,但窗口管理器不能很好地管理 Java 应用程序。它们都被视为一个应用程序,当您通过 Alt Tab 键浏览它们时,没有图标或名称可以识别它们。
我想也许可以通过在启动进程时给进程或至少窗口提供唯一的名称来改善这种情况。
也许这可以通过命令行标志来完成?
I've started using a Ubuntu desktop in my new workplace and the window manager doesn't manage java applications very well. They are all treated as one application, no icons or names to recognise them by when you alt tab through them.
I thought perhaps it might be possible to improve the situation by giving the processes or at least windows unique names when I start them.
Maybe this can be done with a command line flag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您要创建一个 JFrame 作为 GUI 的根窗口,您可以在构造函数中传递一个参数来设置名称。您当然可以从 main 方法的 String[] args 参数中获取该 String 值。
Assuming you're creating a JFrame as the root window of your GUI, you can pass an argument in the constructor to set the name. You can certainly get that String value from the
String[] args
argument of your main method.