问题描述
使用 Java 程序在 Ubuntu 20.04 LTS 中使用 OpenJDK 1.6 测试 Apache commons(commons.compress 和 commons.io)。构建正常,但遇到错误(如下)。 apache.commons.compress 和 apache.commons.io 都和程序在同一个目录下。
构建程序的命令如下: javac unTar.java --module-path 。 --class-path 。 --add-modules org.apache.commons.io,org.apache.commons.compress
import java.io.*;
import org.apache.commons.compress.archivers.tar.*;
//import org.apache.commons.compress.archivers.tar.TararchiveInputStream;
import org.apache.commons.io.IoUtils;
public class unTar {
public static void main(String[] args) throws Exception{
/* To read individual TAR file */
TararchiveEntry entry = null;
String individualFiles;
int offset;
FileOutputStream outputFile=null;
TararchiveInputStream myTarFile= new TararchiveInputStream(new FileInputStream(new File("tar_ball.tar")));
/* Create a loop to read every single entry in TAR file */
while ((entry = myTarFile.getNextTarEntry()) != null) {
/* Get the name of the file */
individualFiles = entry.getName();
/* Get Size of the file and create a byte array for the size */
byte[] content = new byte[(int) entry.getSize()];
offset=0;
/* Some SOP statements to check progress */
System.out.println("File Name in TAR File is: " + individualFiles);
System.out.println("Size of the File is: " + entry.getSize());
System.out.println("Byte Array length: " + content.length);
/* Read file from the archive into byte array */
myTarFile.read(content,offset,content.length - offset);
/* Define OutputStream for writing the file */
outputFile=new FileOutputStream(new File(individualFiles));
/* Use IoUtiles to write content of byte array to physical file */
IoUtils.write(content,outputFile);
/* Close Output Stream */
outputFile.close();
}
/* Close TarachiveInputStream */
myTarFile.close();
}
}
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/compress/archivers/tar/TararchiveInputStream
at unTar.main(unTar.java:14)
Caused by: java.lang.classNotFoundException: org.apache.commons.compress.archivers.tar.TararchiveInputStream
at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:636)
at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:182)
at java.base/java.lang.classLoader.loadClass(ClassLoader.java:519)
... 1 more
解决方法
java -cp commons-io-VERSION.jar:commons-compress-VERSION.jar unTar
以上是向 java 运行时提供所需类路径的常规方法。不确定这是否是您的问题。
,我使用的是已弃用的 write 版本。我改用其他替代品,它奏效了。抱歉打扰了。我已经有十多年没有使用 Java 了。