java.lang.UnsatisfiedLinkError: sun.net.www.protocol.http.NTLMAuthSequence.initFirst()V

发布于 2024-11-04 20:12:49 字数 271 浏览 1 评论 0原文

package sun.net.www.protocol.http;

import java.io.IOException;

public class Test
{
   public static void main(String[] args) throws IOException
   {
      System.out.println(new NTLMAuthSequence(null, null, null));
   }
}

知道为什么我会收到此错误吗?

package sun.net.www.protocol.http;

import java.io.IOException;

public class Test
{
   public static void main(String[] args) throws IOException
   {
      System.out.println(new NTLMAuthSequence(null, null, null));
   }
}

Any idea on why am I getting this error?

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

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

发布评论

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

评论(2

能否归途做我良人 2024-11-11 20:12:49

类加载器是问题所在。所以我的解决方案是创建一个包含上述类文件的 jar 文件并将其放入 jre bin 文件夹中,以便同一个类加载器可以读取它。

Classloader was the issue. So solution for me was to create a jar file containing above class file and put into the jre bin folder so that it can be read by the same classloader.

霊感 2024-11-11 20:12:49

您缺少提供 initFirst() 方法的本机库。

我在网上找到的消息来源是这样说的: private native static void initFirst ();

如果此方法应该是 JRE 的一部分,则您的安装可能已损坏,或者您可能拥有旧版本。

You're missing a native library that provides the initFirst() method.

The sources I found online say this: private native static void initFirst ();

If this method should be part of the JRE, your installation might be corrupt or you might have an older version.

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