0

对不起,我的英语不是很好。

我在使用 JNLP 和启动画面时遇到问题。

当我使用文件 .jar 启动我的应用程序时,我的启动画面正确启动,但是当我使用文件 .jnlp 启动我的应用程序时,启动画面中的图像不会启动。

有人对我如何解决这个问题有任何想法吗?谢谢

4

1 回答 1

0

谢谢你的回答,但我仍然有疑问。

我认为上面的代码是为了改变java的splash标准,对吗?

我不想更改 java 的启动画面,但我的应用程序的启动画面会在加载时显示,下面遵循我的代码。

try {  
                SplashScreen splash = SplashScreen.getSplashScreen();       
                splash.setImageURL(new URL("Imagens/Splash.png");
                Graphics2D g = splash.createGraphics();  


            } catch (NullPointerException ex) {  

                ex.printStackTrace();
            } catch (IOException ex) {  
                ex.printStackTrace();
            } catch (IllegalStateException ex) {  
                Logger.getLogger(Splash.class.getName()).log(Level.SEVERE, null, ex);  
            }  
于 2013-09-01T07:08:50.040 回答