1

我在 c# Visual Studio 2005 项目中使用 java.util.zip 提取 zip 文件,

但是当我将项目升级到 Visual Studio 2010 时,它不再编译并抛出以下错误

"The type or namespace name 'java' could not be found (are you missing a using directive or an assembly reference?)"

Visual Studio 2010 中是否缺少 java 或 java.util?我应该怎么做才能在我的项目中添加它?

4

1 回答 1

4

J#在 VS 2008 中停产。您需要安装 J# 2.0 Redistributable 包(从同一页面链接)并在您的 C# 项目中添加适当的引用。

或者,您可以使用SharpZipLib或其他第三方库。

于 2012-11-26T12:31:00.640 回答