2

第一的。我知道已经存在关于如何访问 jar 文件中的图像的各种主题。第二。我尝试了很多选择,但没有一个不起作用。我当然知道我在某个地方犯了错误。你能帮我理解我做错了什么吗?

所以,我有一个名为“j”的原型项目,它只包含一个 java 类——客户端。客户端尝试访问图像 good.png。在我将所有内容打包到可执行 jar 文件后,客户端无法访问文件。我在eclipse中工作,并使用ant。

j/
-src/
--com/
---pupcom/
----Client.java
-images/
--good.png
-build.xml
-.classpath
-.project  

com.pupcom.Client 包含

package com.pupcom;
//imports;
public class Client {
    public static void main(String [] a) {
        new Client();
    }
    public Client() {
        URL imageURL =  getClass().getClassLoader().getResource("images"+File.separator+"good.png");
        if(imageURL != null){
            Image image = Toolkit.getDefaultToolkit().getImage(imageURL);
            if(image != null){
                System.out.println("Complete!");
            }else{
                System.out.println("image == null");
            }
        }else{
            System.out.println("imageURL == null");
        }
    }
}

构建.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project name="j" basedir=".">
    <property name="src.dir" value="src"/>
    <property name="build.dir" value="build"/>
    <property name="main-class" value="com.pupcom.Client"/>
    <property name="jar.name" value="j.jar"/>
    <target name="clean">
        <delete dir="${build.dir}"/>
        <delete file="${jar.name}"/>
    </target>
    <target name="compile" depends="clean">
        <mkdir dir="${build.dir}"/>
        <mkdir dir="${build.dir}/images"/>
        <copy todir="${build.dir}/images">
            <fileset dir="images" />
        </copy>
        <javac srcdir="${src.dir}" destdir="${build.dir}" />
    </target>
    <target name="run" depends="jar">
            <java  jar="${jar.name}" fork="true"/>
        </target>
    <target name="jar" depends="compile">
        <jar destfile="${jar.name}">
            <fileset dir="${build.dir}" />
            <manifest>
                <attribute name="Main-Class" value="${main-class}"/>
            </manifest>
        </jar>
    </target>
</project>

我还使用了这些行:

URL imageURL =  getClass().getClassLoader().getResource(File.separator + "images"+File.separator+"good.PNG");
URL imageURL =  getClass().getClassLoader().getResource("good.PNG");
URL imageURL =  getClass().getResource(File.separator + "images"+File.separator+"good.PNG");
URL imageURL =  getClass().getResource("good.PNG");
URL imageURL =  Client.class.getResource(File.separator + "images"+File.separator+"good.PNG");
URL imageURL =  Client.class.getResource("good.PNG");
URL imageURL =  Client.class.getClassLoader().getResource(File.separator + "images"+File.separator+"good.PNG");
URL imageURL =  Client.class.getClassLoader().getResource("good.PNG");

谢谢你的帮助!!!!!!!!!!

感谢 Marko Topolnik,通过将“File.separator”替换为“/”解决了这个问题。非常感谢 Marko Topolnik!!!!

4

1 回答 1

5
  1. Don't use the File.separator in getResource() - it always takes / (think of it as an URL HREF).
  2. Prefix the path with / to ensure the class loader searches from the root of the class-path, rather than relative to the package of the class.
  3. Check that good.PNG is the correct case. It does not matter on the Windows file-system, but getResource() is case-sensitive.
于 2012-05-06T09:41:56.190 回答