Java Applet 中的外观和感觉不起作用
我使用以下代码来设置 Java Applet 的外观。这完全可以在 Java 应用程序中运行。
编辑
@Override
public void init() {
try {
//This sets the look and feel to NIMBUS.
UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
} catch (Exception ex) {
ex.printStackTrace();
}
initComponents();
//Calls the method showStartScreen()
startGame();
}
这在我的网页上随机运行。有什么建议吗?
I use the following code to set the look and feel for my Java Applet. This completely works inside a Java Application.
EDIT
@Override
public void init() {
try {
//This sets the look and feel to NIMBUS.
UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
} catch (Exception ex) {
ex.printStackTrace();
}
initComponents();
//Calls the method showStartScreen()
startGame();
}
This works at random times on my web page. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我是 Nimbus 的忠实粉丝之一
I'm one of BIG Nimbus fans
调用代码时出现什么异常?
如果没有例外,您是否总是在绘制任何内容之前调用外观和感觉更改?
最后,可能是用户没有设置/安装那种外观和感觉吗?
What exception are you getting when calling the code?
If there is no exception, do you always call the look and feel change before ANYTHING is painted?
And last, could it be the user doesn't have that look and feel setup/installed?