Access restriction: The type FtpClient is not accessible due to restriction on required library

来源:互联网 发布:java水仙花数编程 编辑:程序博客网 时间:2024/04/29 10:06

接受项目在本地部署时项目代码中引用

import sun.net.ftp.FtpClient;

报如下错误:

Access restriction: The type FtpClient is not accessible due to restriction on required library D:\MyEclipse\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_64_1.6.0.013\jre\lib\rt.jar

这是因为sun.net包里的类,在eclipse里默认是不让用的

解决办法是自定义access rules

右键项目名->Properties->Java Build Path->Libraries,点击JRE System Library里面的Access rules,增加sun/** 为accessible,如果该项存在,就edit。

或是先将 JRE System Library    Remove掉,然后再点Add Library添加。

0 0
原创粉丝点击