Deflater 类的 SetDictionary 方法
我是 Java 新手,试图了解压缩中的字典是如何工作的。
public void setDictionary(byte[] b, int off, int len)
任何人都可以给我一个如何使用此方法的示例吗?
I'm new to Java and trying to understand how dictionary in compression works.
public void setDictionary(byte[] b, int off, int len)
Can Anyone give me an example of how to use this method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你提到的“字典”并不是Java本身特有的,而是DEFLATE压缩算法的一部分。你可以在网上找到很多描述该算法的参考文献; 维基百科是一个很好的起点。
The "dictionary" you mentioned is not specific to Java itself, but is part of the DEFLATE compression algorithm. You can find a lot of references on the Internet describing the algorithm; Wikipedia is a good starting point.