使用MyEclipse GUI将图片放入java程序中
我想将我之前粘贴到项目中的资源图片中的图片添加到使用 Eclipse 和 MyEclipse(用于 GUI 视觉设计)创建的 GUI 程序中。
我设法使用但我想直接使用资源“src”文件夹中的图像加载 .JAR 文件旁边的图片
image = ImageIO.read(new File("imageFile.jpg"));
,以便 .JAR 文件是一个独立文件,但可以很好地加载图片。
我尝试
image = ImageIO.read(new File("src/ldtlogo3.jpg"));
在导出 .JAR 文件时使用此方法 Java:导出到 eclipse 中的 .jar 文件
I want to add a picture to my GUI program created using Eclipse and MyEclipse (for GUI visual design) from the resource pictures I pasted earlier in the project.
I managed to load pictures that lies just beside the .JAR file using
image = ImageIO.read(new File("imageFile.jpg"));
But I want to use the image from my resources "src" folder directly , so that the .JAR file is a standalone file yet loads pictures nicely.
I tried to make it
image = ImageIO.read(new File("src/ldtlogo3.jpg"));
I use this method when exporting the .JAR file
Java: export to an .jar file in eclipse
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用以
InputStream
作为参数的重载ImageIO.read
方法,并使用MyClass.class.getResourceAsStream()
获取此输入流。getResourceAsStream
从类路径(以及应用程序的 JAR)加载资源。它的 api 文档会告诉你它期望的路径。请注意,src 目录用于保存 Java 源文件。罐子里不包含它。它包含 .class 文件,其层次结构直接映射包层次结构。 Eclipse 将通过复制到输出目录来自动“编译”图像文件以及 .class 文件。
Use the overloaded
ImageIO.read
method taking anInputStream
as a parameter, and useMyClass.class.getResourceAsStream()
to get this input stream.getResourceAsStream
loads a resource from the classpath (and thus from the JAR of your application). Its api doc will tell you which path it expects.Note that the src directory is used to hold your Java source files. The jar doesn't contain it. It contains the .class files, in a hierarchy which directly maps the package hierarchy. Eclipse will automatically "compile" the image file by copying to the output directory, along with the .class files.