This may be better suited for the Java forums but I will ask it here just in case someone has run into it before. I have a packfile that I have saved as a file from the git-upload-pack command. I want to read through the packfile, decompressing each of the objects. My little inflater procedure works fine for a tiny HelloWorld project. So, I decided to mix it up a little and use the jEdit source for a larger test. I am 99% certain the jEdit.git packfile itself is ok as I have passed it through directly to eGit's Import using an SSH proxy and eGit unpacked it just fine. So, my inflater method decompresses the first 7 objects fine (a commit, a couple of trees, and several blobs) and a cursory visual inspection of the decompressed data seems fine. The eighth object becomes a problem, though. It is a blob with the name build.xml that is 51,060 bytes decompressed (looking at the original pre-git-pushed jEdit source). The actual file size matches the decompressed data content size in the packfile object header. The inflater procedure outputs the decompressed data to System.out for visual inspection. Approximately the first 1/3 looks like the original build.xml but after that, the output is garbled. The procedure continues decompressing objects after the 8th, but garbled, object but it dies on the 9th object with an "unknown compression method" error. So I created a new test inflater to focus only on decompressing the 8th object. Simply opening the packfile, copying out the compressed data (7793 bytes), and inflating it yields the same 2/3 garbled xml. As a further test, I then take the original build.xml file, compress it using java's Deflater (yielding a 7793 byte array), and then inflate it using my same procedure and it decompresses fine. All of the xml is readable. Now, I have tried several variations of an inflater procedure, including an patchwork variation from jGit's WindowCursor.inflate method. But they all yield the same garbled result for the compressed build.xml data. Any suggestions. I can post some of my ugly code if asked. Thanks! -- View this message in context: http://git.661346.n2.nabble.com/Java-Inflater-problem-decompressing-packfile-tp6278154p6278154.html Sent from the git mailing list archive at Nabble.com. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html