错误:升级到 Java 1.6 后,com.sun.crypto.provider 包不存在

发布于 2024-10-17 04:23:46 字数 114 浏览 2 评论 0原文

我最近将现有的java项目从java 1.4升级到1.6,但由于错误而无法编译:包com.sun.crypto.provider不存在。

我意识到我缺少一个库,但我不知道要下载哪个库或在哪里下载它?

I have recently upgraded an existing java project from java 1.4 to 1.6 and it fails to compile due to the error: package com.sun.crypto.provider does not exist.

I realise that I'm missing a library but I don't know which library to download or where to download it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

〆一缕阳光ご 2024-10-24 04:23:46

com.sun.crypto.provider 是 Sun Java 加密扩展 (JCE),为 Java 1.3 引入(我认为)是为了绕过美国政府疯狂的出口法规。不过,JCE 是非标准的(所有 com.sun 包也是如此),并且它们在更高版本的 Java 中被重命名/重构,这些版本具有“适当的”加密包(javax.加密)。

因此,如果不进行修改(将 JCE 引用更改为新的标准包),您的应用程序将无法在 Java6 上运行。

com.sun.crypto.provider is the Sun Java Cryptography Extension (JCE), introduced for Java 1.3 (I think) to get around the lunatic export regs of the US government. The JCE was non-standard, though (as are all com.sun packages), and they were renamed/refactored in later versions of Java, which have "proper" crypto packages (javax.crypto).

Therefore, your application as it stands will not run on Java6 without modification, changing the JCE referneces to the new standard packages.

故事与诗 2024-10-24 04:23:46

您应该修改应用程序,使其不依赖于不属于公共 API 的库,而不是下载库。未来的升级不需要进一步的努力。

Rather than downloading a library, you should modify your application so that it doesn't depend on libraries that aren't part of the public API. Future upgrades would require no further effort.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文