package app;
import javax.swing.UIManager;
import com.seaglasslookandfeel.*;
public class App {
public static void main(String[] args {
UIManager.setLookAndFeel(UIManager.setLookAndFeel("com.seaglasslookandfeel.SeaGlassLookAndFeel"));
//run the GUI
UI GUI = new UI();
GUI.setVisible(true);
}
}
我在与代码相同的程序包中包含seaglasslookandfeel-0.2.jar文件,并将该jar添加到NetBeans的编译库中,但是在尝试设置时,我始终收到“此处不允许的空类型”错误LnF。此错误是针对UIManager ....行。
如果我取出“”,则会得到“未找到符号:seaglasslookandfeel”
有什么想法吗?
答案 0 :(得分:0)
已解决,问题是我两次拥有UIManager。