我运行一个简单的TrueZip代码:
TFile src = new TFile(path + file_to_add);
TFile dst = new TFile(path + outZipFile);
src.cp_rp(dst);当我运行程序时,编译器抛出(在第一行):
java.lang.NoClassDefFoundError: de/schlichtherle/truezip/fs/FsSyncOption我有truezip-file-7.4.3.jar和truezip-file-7.4.3-soures.jar文件。
是我遗漏了jars,还是问题出在别的地方?
发布于 2012-09-14 08:58:51
根据Maven POM添加truezip-driver-file.jar & truezip-kernel.jar。
https://stackoverflow.com/questions/12403496
复制相似问题