我正在尝试实现Synth的外观,并且对实际软件的外观没有任何作用。经检查,我的文件路径正确。有人知道为什么这不起作用吗?

Java:

try {
    SynthLookAndFeel laf = new SynthLookAndFeel();
    laf.load(new FileInputStream("src/look_and_feel.xml"), Truss.class);
    UIManager.setLookAndFeel(laf);
} catch (Exception e) {
    e.printStackTrace();
}


XML:

<synth>
    <style id="default">
        <font name="Courier" size="14" />
    </style>
    <bind style="default" type="region" key="Button" />
</synth>


提前致谢。

最佳答案

建议的加载外观的方法是:

SynthLookAndFeel laf = new SynthLookAndFeel();
laf.load(Truss.class.getResourceAsStream("laf.xml"), Truss.class);
UIManager.setLookAndFeel(laf);


source

您的问题似乎是加载xml资源的方式。

因此,了解获取流here的区别

此外,请仔细阅读tutorial

关于java - Synth Look and Feel什么也没做?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25380050/

10-10 10:01