Hello, I am trying to uncompress zstd compressed files with the commons-compress library and I get the ZstdIOException "truncated source":
com.github.luben.zstd.ZstdIOException: Truncated source at com.github.luben.zstd.ZstdInputStreamNoFinalizer.readInternal(ZstdInputStreamNoFinalizer.java:174) at com.github.luben.zstd.ZstdInputStreamNoFinalizer.read(ZstdInputStreamNoFinalizer.java:136) at com.github.luben.zstd.ZstdInputStream.read(ZstdInputStream.java:103) at org.apache.commons.compress.compressors.zstandard.ZstdCompressorInputStream.read(ZstdCompressorInputStream.java:104) at org.apache.commons.compress.compressors.zstandard.ZstdCompressorInputStream.read(ZstdCompressorInputStream.java:96) Does it mean that the Stream ended before the expected compression ended? The Data from the uncompressed stream is what I am expecting, so I just need to get rid of that exception. Is there a way how to verify this? Thank you in advance. Best Regards, Mehmet