Java Web Start窗口标题问题
我编写了一个使用 Java Web Start 的 JavaFX 应用程序。由于某种原因,窗口标题始终为“Java”(在 Linux 上)或空白(在 Windows 上)。但是,桌面图标具有正确的应用程序标题和图像。
从我到目前为止所发现的情况来看,这里重要的一点是信息> JNLP 文件中的标题元素。
我缺少什么?
注意:如果有人说我的 JNLP 内容有用,我很乐意发布它。
I've written a JavaFX application that uses Java Web Start. For some reason, the window title is always "Java" (on Linux) or blank (on Windows). However, the desktop icon has the correct application title and image.
From what I've found so far, the important bit here is the information > title element in the JNLP file.
What am I missing?
NOTE: I'm happy to post my JNLP content if someone says it would be of use.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,任务栏条目的应用程序标题和图标是由
Stage
的title
和icons
属性控制的。只有桌面图标的标题和图标是由JNLP 控制的。
It turns out that the application title and icon for the taskbar entry are controlled by the
title
andicons
attributes of theStage
.Only the title and icon of the desktop icon are controlled by the JNLP.