Java ClassLoader不能找到类
在我的项目中还有两个类:TheProblem和Server。
public class TheProblem {
public static void main (String args []) throws ClassNotFoundException {
ClassLoader.getSystemClassLoader().loadClass("Server");
}
}
当我从命令行执行代码时,一切正常。 但是当我使用ANT执行代码时,我得到一个ClassNotFoundException - 尽管Server.class和TheProblem.class都在同一个目录中。
我的项目的目录结构非常简单 - 我将在此尝试说明它:
root_folder/
- build.xml
- src/
- TheProblem.java
- Server.java
- build/
- TheProblem.class
- Server.class
这是我的build.xml文件的摘录:
<?xml version="1.0" encoding="UTF-8" ?>
<project name="JAXB" default="compile">
<path id="project.class.path">
<pathelement path="${java.class.path}" />
<pathelement location="build" />
</path>
<target name="init" >
<mkdir dir="build" />
</target>
<target name="compile" depends="init" >
<javac classpathref="project.class.path" srcdir="src" destdir="build"
includeAntRuntime="false" />
</target>
<target name="execute-problem" depends="compile">
<java classpathref="project.class.path" classname="TheProblem" />
</target>
<target name="clean" depends="init">
<delete dir="build" />
</target>
</project>
当我执行ant编译时,一切都编译完成,但是当我执行ant execute-problem时,ClassLoader找不到Server类并引发ClassNotFoundException。 当我导航到构建目录并调用java TheProblem时,它工作得很好。 我真的不知道,为什么它不能使用ANT。
非常感谢您花时间阅读这篇文章。
代替
<target name="execute-problem" depends="compile">
<java classpathref="project.class.path" classname="TheProblem" />
</target>
尝试使用这个
<target name="execute-problem" depends="compile">
<java fork="true" dir="." classname="TheProblem">
<classpath>
<path refid="project.class.path" />
</classpath>
</java>
</target>
链接地址: http://www.djcxy.com/p/44399.html