Skip to content
#

uncompress

Here are 19 public repositories matching this topic...

AlexisJehan
AlexisJehan commented May 4, 2022

Describe the bug
Reading an archive with an empty file is throwing an IllegalArgumentException.

To Reproduce

try (final var archive = new Archive(Path.of("file.rar").toFile())) {
	while (true) {
		final var fileHeader = archive.nextFileHeader();
		if (null == fileHeader) {
			break;
		}
		final var outputStream = new ByteArrayOutputStream();
		//archive.extractFile(fil

Improve this page

Add a description, image, and links to the uncompress topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the uncompress topic, visit your repo's landing page and select "manage topics."

Learn more