Synth Look and Feel什么都不做?

时间:2014-08-19 09:33:25

标签: java

我正在尝试实现Synth的外观和感觉,并没有对实际软件的外观做任何事情。我的文件路径是正确的,因为我已经检查过了。有人知道为什么这不起作用:

爪哇:

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> 

提前致谢。

1 个答案:

答案 0 :(得分:1)

加载Look-And-Feel的推荐方法是:

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

source

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

因此,请阅读获取流here

的不同之处

另外,请仔细查看tutorial