谁可以在 C# 中为 dankogai 的 javascript deflate 实现 inflate?
这是 dankogai 的 javascript deflate http://github.com/dankogai/js-deflate 我无法从 C# 中膨胀,请帮助我
this is dankogai's javascript deflate http://github.com/dankogai/js-deflate
I can't inflate from c#,please help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从表面上看,它使用标准的 GZip INFLATE/DEFLATE 算法。
只是一个问题,为什么需要在浏览器之外对其进行充气?
From the looks of it, it uses the standard GZip INFLATE/DEFLATE algorithms.
Just a question, why do you need to inflate it outside the browser?
我找到了一个新的,johan 修复了一些问题,dankogai 的版本我无法使用 java 进行充气
https://github.com/johan/js-deflate
如果你想充气,你必须假zlib头和脚。
Java代码是这样的:
I found a new one which johan fix something,the dankogai's version I can't inflate using java
https://github.com/johan/js-deflate
If you want to inflate, you must fake zlib head and foot.
Java code is like this:
我在服务器端使用 Google 的 V8 Javascript 引擎 ( http://javascriptdotnet.codeplex.com/ ) 来运行 Javascript我在网络浏览器的客户端运行的代码。
I use Google's V8 Javascript engine ( http://javascriptdotnet.codeplex.com/ ) on server side to run Javascript code which I run on client side in web browser.