try{
UIManager.setLookandFeel(UIManager.getSystemLookandFeelmaster());
}
catch (Exception e)
{
e.printStackTrace();
}
这是代码,我在其中找到"找不到符号"错误。
编辑:" master"是班级名称
答案 0 :(得分:0)
UIManager
没有名为getSystemLookandFeelmaster
的方法,我相信你的意思是getSystemLookAndFeelClassName
你的IDE的自动完成应该有帮助(如果你没有使用它,你应该)和/或检查JavaDocs for UIManager
会突出显示问题并提供推荐的解决方案 - 更不用说任何可用示例的数量
答案 1 :(得分:0)
Your code appears to be referring to something that the compiler doesn't understand
。再次编译它。如果仍未解决,则检查所有相关的罐子是否正确导入。最好使用一些IDE(Eclipse / InteliJ等),它会告诉你代码是否正确。
可能的建议:What does a "Cannot find symbol" compilation error mean?
答案 2 :(得分:0)
UIManager java文档下没有UIManager.getSystemLookandFeelmaster。
你在寻找这个吗?
try{
UIManager.setLookandFeel(UIManager.getSystemLookAndFeelClassName());
}
catch (Exception e)
{
e.printStackTrace();
}