提取JAR文件内容到指定目录
问题:
您希望开发一个Java程序,可以将JAR文件解压到指定目录,类似于解压的功能一个档案。但是,运行“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中文网其他相关文章!