使用MyEclipse GUI将图片放入java程序中

发布于 2024-11-18 22:27:19 字数 481 浏览 2 评论 0原文

我想将我之前粘贴到项目中的资源图片中的图片添加到使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瘫痪情歌 2024-11-25 22:27:19

使用以 InputStream 作为参数的重载 ImageIO.read 方法,并使用 MyClass.class.getResourceAsStream() 获取此输入流。 getResourceAsStream 从类路径(以及应用程序的 JAR)加载资源。它的 api 文档会告诉你它期望的路径。

请注意,src 目录用于保存 Java 源文件。罐子里不包含它。它包含 .class 文件,其层次结构直接映射包层次结构。 Eclipse 将通过复制到输出目录来自动“编译”图像文件以及 .class 文件。

Use the overloaded ImageIO.read method taking an InputStream as a parameter, and use MyClass.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文