在 vb.net 项目中导入 java.util.zip
我需要为我的项目导入 java.util.zip 以压缩和解压缩 vb.net 中选定的文件/文件夹。但是当我说导入 java.util.zip 时,我收到错误“找不到命名空间”。我进入了添加引用并检查了 .net 和 COM 组件,但没有发现任何与 java 相关的内容。 我需要什么 dll 才能完成这项工作?
谢谢
I need to import java.util.zip for my project to zip and unzip chosen files/folders in vb.net. But when i say imports java.util.zip, i get the error "Namespace cannot be found". I went in the add reference and checked in both .net and COM components bout found nothing for java.
What dll would i need to make this work?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您需要使用纯托管代码库进行压缩/解压缩,则应该查看 SharpZipLib
If you need zip/unzip using a pure managed code library, you should to take a look at SharpZipLib
您可能正在谈论一些古老的 J# 库,在这种情况下,您必须引用 vjslib.dll,
但不要这样做。
使用健全的小型 Zip 库,例如 DotNetZip
You might be talking about some ancient J# library, in which case you'll have to reference vjslib.dll
Don't do that though.
Use a sane,small Zip library, such as DotNetZip