How can I do LZW decoding in Java?

前端 未结 4 2010
不知归路
不知归路 2020-12-18 04:19

I have a database which contains picture data stored as a binary blob. The documentation says the data is encoded using LZW. I thought that I could decode it using the Zip o

4条回答
  •  一个人的身影
    2020-12-18 04:26

    I went through a surprising amount of LZW implementations before finding one that worked for my case.

    UncompressedInputStream from the BioJava project worked for me, when I needed to unpack a .pax file.

提交回复
热议问题