我已经使用 eclipse 创建了一个 SWT 应用程序。在应用程序中,我在项目中使用了图像。现在我构建 jar 文件并在命令行中运行它,我收到以下错误:
Caused by: java.io.FileNotFoundException: Images\Back.png (The system cannot fin
d the path specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(Unknown Source)
at java.io.FileInputStream.<init>(Unknown Source)
at org.eclipse.swt.internal.Compatibility.newFileInputStream(Unknown Sou
rce)
现在我可以看到程序无法读取我的图像,但我想问一下如何将图像包含在 jar 文件中以使一切顺利运行。