私はJARファイルにressourcesを入れたいですが、使用したいときに問題があります。私はこのコードのパスを示している場合:Javaのressourceのnull値
JOptionPane.showMessageDialog(null, MyStaticClass.class.getResource("/ressources/") + "file.File" + i, "OK", JOptionPane.INFORMATION_MESSAGE);
File file = new File(MyStaticClass.class.getResource("/ressources/") + "file.File" + i);
をメッセージボックスの結果はjar:file:/home/clement/Bureau/Untitled.jar!/ressources/niveau.Niveau1
とexeption
java.io.FileNotFoundException: jar:file:/home/clement/Bureau/Untitled.jar!/ressources/file.File1 (No file or folder of this type)
ファイルはSRC/ressources/file.File1
これを試してくださいhttp://stackoverflow.com/questions/941754/how-to-get-a-path-to-a-resource-in-a-java-jar-file –