我可以在Java Web Start中压制加载对话框吗?

时间:2021-08-21 20:48:18

I'm trying to put together a Java Webstart app, but don't want it to display the Webstart splash screen, or "downloading app" boxes. Is there any way I can turn them off? (I'm fine with it displaying the Permissions Request box, but nothing else).

我正在尝试组建一个Java Webstart应用程序,但不希望它显示Webstart启动画面或“下载应用程序”框。有什么方法可以把它们关掉吗? (我很好用它显示权限请求框,但没有别的)。

3 个解决方案

#1


3  

Yes, use the -nosplash option.

是的,使用-nosplash选项。

Place this:

<argument>-nosplash</argument>

in your JNLP document.

在您的JNLP文档中。

#2


0  

Or you can use your on startup image:

或者您可以使用您的启动图像:

MyProject1.0 My Company. Application Launcher For MyProject1.0 ....

MyProject1.0我的公司。应用程序启动器为MyProject1.0 ....

#3


0  

Note, that for production use you might want the visual feedback to users, to avoid the "It doesn't work today" (where a big update must be downloaded over a slow line resulting in long startup times).

请注意,对于生产用途,您可能希望向用户提供视觉反馈,以避免“它今天不起作用”(必须通过慢速线下载大量更新,导致启动时间过长)。

#1


3  

Yes, use the -nosplash option.

是的,使用-nosplash选项。

Place this:

<argument>-nosplash</argument>

in your JNLP document.

在您的JNLP文档中。

#2


0  

Or you can use your on startup image:

或者您可以使用您的启动图像:

MyProject1.0 My Company. Application Launcher For MyProject1.0 ....

MyProject1.0我的公司。应用程序启动器为MyProject1.0 ....

#3


0  

Note, that for production use you might want the visual feedback to users, to avoid the "It doesn't work today" (where a big update must be downloaded over a slow line resulting in long startup times).

请注意,对于生产用途,您可能希望向用户提供视觉反馈,以避免“它今天不起作用”(必须通过慢速线下载大量更新,导致启动时间过长)。