我有一个生成源代码的prorgam,并希望在java运行时执行期间编译此源代码,如:
generateSource()
compileSource()
我使用ToolProvider:中的JavaCompiler
ArrayList<String> optionList = new ArrayList<String>();
System.out.println("Retrieve dependendcy Jars");
ArrayList<File> jarfiles = getJarFiles(this.libdir);
String libpath = System.getProperty("java.class.path") + convertJarFilesToClassPath(jarfiles);
optionList.addAll(Arrays.asList("-d", this.genClassDir ));
optionList.addAll(Arrays.asList("-classpath", libpath));
ArrayList<File> files1 = getSourceFiles(this.genCodeDir);
Iterable<? extends JavaFileObject> compilationUnits1 = fileManager.getJavaFileObjectsFromFiles(files1);
JavaCompiler.CompilationTask task = compiler.getTask(null ,fileManager , null, optionList, null, compilationUnits1 );
task.call();
现在,重要的一行是我在选项列表中添加-d类目录的地方。
我有这个genClassDir/gen/classes,我所有的.class文件都在里面,包括子目录。
现在,我的jar文件中的问题是,类文件在包结构之前有genClassDir作为前缀。
./gen/classes/foo/
./gen/classes/foo/bar/
而不是
/foo
/foo/bar
或者不带前导斜杠。
我正在像How to use JarOutputStream to create a jar file?
有没有办法只获取jar中类文件的包结构?
您可以将basePath
参数添加到另一个问题中所示的解决方案的add()
方法中,并在创建Jarentry
之前从每个文件名中删除基本路径
private void add(File source, String basePath, JarOutputStream target) throws IOException
{
//...
name = name.replaceFirst(basePath, "");
JarEntry entry = new JarEntry(name);
//...
}
根据需要调整替换(前导/尾随斜杠、反斜杠而非斜杠等)
用法:
add(new File("gen/classes/test.class", "gen/classes", new JarOutputStream(...));