将jre限制不能用的包启用方法。 sun.net.ftp.FtpClient

来源:互联网 发布:js的prototype是什么 编辑:程序博客网 时间:2024/05/17 06:17

签名:love聊网络那点事:http://weibo.com/u/3923942488

例如:sun.net.ftp.FtpClient默认是不允许用的,需要自己启用。

Access restriction: The type FtpClient is not accessible due to restriction on required library F:\Program Files\Java\jre6\lib\rt.jar

sun.net包里的内容,在eclipse/myeclipse里默认是不让用的。解决办法是自定义access rules 


工程上右键->工程属性->java builder path->Libraries标签,点击JRE System Library里面的Access rules,add sun/** 为accessible,如果该项存在,就edit。然后选择workspace default jre(jdk1.6.0_18)

 

2.

import com.sun.image.codec.jpeg.JPEGCodec;

在Eclipse中处理图片,需要引入两个包:
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
报错:
Access restriction: The type JPEGImageEncoder is not accessible due to restriction on required library C:\Java\jre1.6.0_07\lib\rt.jar


此时解决办法:
Eclipse默认把这些受访问限制的API设成了ERROR。只要把Windows-Preferences-Java-Complicer-Errors/Warnings里面的Deprecated and restricted API中的Forbidden references(access rules)选为Warning就可以编译通过。

更多