vote up 0 vote down star

If i compress and decompress data using java then it works fine My if friend uses C#.NET to compress data while i am using java SO inthis case I can not decompress the same data.

I am using inflatter and deflater in java.

Thanks Bapi

flag

13% accept rate
1  
Can you give some sample code for the Java decompress and the C# compress? – rwwilden Apr 29 at 6:27
2  
what C# api does your friend use? Does it implement zlib which java deflater does – Journeyman Programmer Apr 29 at 6:27
My friend uses DeflateStream in .NET. It does not implement zlib. Then what should my approach will be? – Deepak Apr 29 at 6:32
1  
this is a very vague description, we will need some sample code. – John T Apr 29 at 6:33

3 Answers

vote up 4 vote down

Use GZIPInputStream and GZIPOutputStream which are compatible with gzip format.

Note: each compression format is different (though similar in approach) and they have to be the same to work.

Inflator and Deflator are a cut down version of the GZIP format and I wouldn't expect it to work with anything another other than Java.

link|flag
vote up 3 vote down

The java.util Deflator and Inflator support are the basic zip compression and decompression format implementations - they do not create a free standing archive file. Rather they create/read the data stream which corresponds to the data portion of one entry in an archive file.

To create an archive file readable by general compression utilities use either the java.util.GZIPXxx or java.util.ZipXxx classes.

link|flag
vote up 1 vote down

Thanks for your support. I changed my compression logic. I used GZIPInputStream both in java and in C#.NET after this only. my problem is solved

Thanks Bapi

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.