我已设法将自定义类添加到用户的项目中(在Blue J中)。我在日食中发展。
我只是想知道是否有人可以帮助解决将java文件添加到项目目录然后编译后要做什么的理论。
我在用户项目中有一个类文件和一个java文件,但我认为我需要将它添加到BlueJ中使用的类加载器中。
我尝试过很多方法,但要继续ClassNotFoundException
到目前为止,我最好的尝试是:
/**
* @param cLoader the bluej class loader inside eclipse
* @param packageName the name of the package the bluej project belongs to
*/
public void addURL(ClassLoder cLoader, String packageName)
{
try
{
ClassLoader classLoader = cLoader;
classLoader.loadClass(packageName);
}
catch(ClassNotFoundException e)
{
//do something
}
}