java.lang.UnsatisfiedLinkError: sun.net.www.protocol.http.NTLMAuthSequence.initFirst()V
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
类加载器是问题所在。所以我的解决方案是创建一个包含上述类文件的 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.
您缺少提供
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.