这是我将文件压缩到存档的方法:
public void addFilesToArchive(File source, File destination) throws
IOException, ArchiveException {
try (FileOutputStream archiveStream = new FileOutputStream(destination);
ArchiveOutputStream archive = new ArchiveStreamFactory()
.createArchiveOutputStream(getType(), archiveStream)) {
updateSourceFolder(source);
generateFileAndFolderList(source);
for (String entryName : fileList) {
ArchiveEntry entry = getEntry(entryName);
archive.putArchiveEntry(entry);
archive.closeArchiveEntry();
}
}
}
fileList包含所有文件层次结构(文件夹和文件)
我想防止同时从不同的线程压缩到一个目的地。
尝试使用:
FileChannel channel = archiveStream.getChannel();
channel.lock();
但它似乎没有帮助。我该如何解决这个问题?
答案 0 :(得分:1)
您正在尝试将文件锁定到其他线程,而不是其他进程,这正是文件锁不能做的事情。见Javadoc。您需要使用同步或信号量。