私の最初の質問:
私はこれを数日間理解しようとしてきましたが、忍耐力を失ったところまで来ました。以下は、いくつかのコードと私のプロジェクト構造です。
質問:getResources()
jar にインポートされた後、Eclipse で作業するにはどうすればよいですか?
助けてくれてありがとう。
public enum Icons {
XXX("src/resoruces/icons/xyz.png");
private ImageIcon icon;
Icons(String path) {
try {
// will fail miserably in eclipse and after exporting to jar
URL imageURL = getClass().getClassLoader().getResource(path);
icon = new ImageIcon(imageURL);
} catch (Exception e) {
// works like a char in eclipse and after creating the jar file
// with the files in the same directory
System.out.println("getResoruce() did not work");
icon = new ImageIcon(path);
}
}