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)まず、コマンド ラインを作成し、または を使用して Java から実行できますProcessBuilder。
Runtime.getRuntime().exec(cmd)
ProcessBuilder
次に、jar は単なる zip ファイルです。ZipOutputStreamまたはのいずれかを使用して作成できます。JarOutputStream
ZipOutputStream
JarOutputStream