我正在使用可视化开发简单的Java应用程序。我必须用maven把它打包到罐子里。我的项目结构是:
SRC
---主要
-------- java的
----------- com.chess
--------资源
-----------图像
我尝试使用像:Images \ image.jpg这样的图片,但它丢失了。我如何使用图像?
这是我的pom.xml:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ChessApp</groupId>
<artifactId>ChessApp</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.chess.Main</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
答案 0 :(得分:1)
通过你的评论,
layout.setIcon(new ImageIcon("Images\\BlackRockAndBlackBoard.jpg"));
ImageIcon将字符串视为文件名,您需要在Get a resource using getResource()
处理一下然后使用url构建ImageIcon
。
URL imageUrl = YourClassName.class.getResource("/Images/ImageName.jpg");
layout.setIcon(new ImageIcon( imageUrl ));
允许使用URL作为构造函数参数,如您在此处http://docs.oracle.com/javase/7/docs/api/javax/swing/ImageIcon.html#ImageIcon%28java.net.URL%29所示。