URLClassLoader类无法使用下面列出的代码以编程方式从jar中加载类,而当我使用 jar cf%jarname %% sources%创建具有相同类的jar时,它可以正常工作。使用 jar cf 和 JarOutputStream 创建的jar之间是否存在差异。
public static ByteArrayInputStream createJar(File file) throws IOException {
Manifest manifest = new Manifest();
manifest.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION, "1.0");
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
JarOutputStream target = new JarOutputStream(bytes, manifest);
for (File child : file.listFiles()) {
addJarEntries(child, target, "");
}
target.flush();
target.close();
return new ByteArrayInputStream(bytes.toByteArray());
}
private static void addJarEntries(File source, JarOutputStream target, String path) throws IOException {
BufferedInputStream in = null;
try
{
if (source.isDirectory())
{
String name = path +source.getName() + File.separator;
for (File nestedFile: source.listFiles())
addJarEntries(nestedFile, target, name);
return;
}
in = new BufferedInputStream(new FileInputStream(source));
JarEntry entry = new JarEntry(path + source.getName());
entry.setTime(source.lastModified());
target.putNextEntry(entry);
while (true)
{
int count = in.read(buffer);
if (count == -1)
break;
target.write(buffer, 0, count);
}
target.closeEntry();
}
finally
{
if (in != null)
in.close();
}
}
最诚挚的问候, 凯沙夫
答案 0 :(得分:1)
jar
命令使用JarOutputStream
创建JAR文件(source code),因此它不能是该类本身的错误。但是,您可能错过了JAR创建过程中的一些重要步骤。例如,您可能包含格式错误的清单。
您应该能够将您的代码与jar
命令的源代码进行比较,看看您是否遗漏了重要内容。