JAR ファイルの内容を指定したディレクトリに抽出しています
問題:
を開発したいと考えていますアーカイブを解凍する機能と同様に、JAR ファイルを指定されたディレクトリに解凍できる Java プログラム。ただし、「jar -xf filename.jar」コマンドを実行するとエラーが発生します。
解決策:
次のアプローチを検討してください:
ZIP/JAR アーカイブからのリソースの使用
この例を参照してください: https://stackoverflow.com/questions/1356436/how-to-extract-java-resources-from-jar-and- zip-archive
プログラムによる抽出
以下のコードを実装します:
<code class="java">java.util.jar.JarFile jar = new java.util.jar.JarFile(jarFile); java.util.Enumeration enumEntries = jar.entries(); while (enumEntries.hasMoreElements()) { java.util.jar.JarEntry file = (java.util.jar.JarEntry) enumEntries.nextElement(); java.io.File f = new java.io.File(destDir + java.io.File.separator + file.getName()); if (file.isDirectory()) { // if its a directory, create it f.mkdir(); continue; } java.io.InputStream is = jar.getInputStream(file); // get the input stream java.io.FileOutputStream fos = new java.io.FileOutputStream(f); while (is.available() > 0) { // write contents of 'is' to 'fos' fos.write(is.read()); } fos.close(); is.close(); } jar.close();</code>
出典: https://www .devx.com/tips/Tip/22124
以上がJava で JAR ファイルを特定のディレクトリに解凍する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。