Eclipse中引入com.sun.image.codec.jpeg包报错的完美解决办法
投稿:wdc
Java开发中对图片的操作需要引入 com.sun.image.codec.jpeg,但有时引入这个包会报错,利用下面的操作可以完成解决这个问题
在Eclipse中开发JAVAT程序处理图片时,需要引入两个包:
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中的访问限制问题,可以通过下面两种方法解决:
一、全局属性preferences>java>Compiler>Errors/Warnings>把右侧的“Deprecated and restricted API>Forbidden reference的Error” 置为“Warning”。
二、项目属性preferences>java build path>把右侧【libraries中的JRE System Library】删除重新导入。
上面两种方法都可以解决 Eclipse 引入 com.sun.image.codec.jpeg报错问题。如还不能解决问题请联系我们
您可能感兴趣的文章:
- Eclipse引入jquery报错如何解决
- jquery库或JS文件在eclipse下报错问题解决方法
- eclipse导入jquery包后报错的解决方法
- Eclipse下jQuery文件报错出现错误提示红叉
- MyEclipse连接MySQL数据库报错解决办法
- eclipse如何忽略js文件报错(附图)
- javascript在myeclipse中报错的解决方法
- 解决常见的Eclipse SVN插件报错方法详解
- eclipse报错 eclipse启动报错解决方法
- Eclipse运行android项目报错Unable to build: the file dx.jar was not loaded from the SDK folder的解决办法