Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何转换命令行:
jar -cf myfile.jar *.class
Eclipse 中的Java 代码?
我有字符串中的所有类路径。我需要在运行时生成 jar。
首先,您可以创建命令行并使用Runtime.getRuntime().exec(cmd)或者使用ProcessBuilder.
Runtime.getRuntime().exec(cmd)
ProcessBuilder
其次,jar 只是一个 zip 文件。您可以使用ZipOutputStream或创建它JarOutputStream
ZipOutputStream
JarOutputStream