微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java 找不到jar怎么办

java 找不到jar怎么办?找不到jar包解决方法

1.右键项目-》属性-》Java bulid path-》jre System Library-》access rules-》resolution选择accessible,下面填上** 点击确定即可!!!

推荐教程:《java学习

2.在MyEclipse中编写Java代码时,用到了某个jar,import sun.misc.BASE64Decoder.*;可是MyEclipse提示

Access restriction: The type *Decoder is not accessible due to restriction on required library C:\Program 
files\java\jre7\lib\rt.jar 
Access restriction : The constructor *BASE64Decoder() is not accessible due to restriction on required library C:\Program files\java\jre7\lib\rt.jar

解决方案1:

只需要在project build path中先移除JRE System Library,再添加库JRE System Library,重新编译后就一切正常了。

解决方案2:

Windows -> Preferences -> Java -> Compiler -> Errors/Warnings -> 
Deprecated and trstricted API -> Forbidden reference (access rules): -> change to warning

原文地址:https://www.jb51.cc/java/1191208.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐