`

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

    博客分类:
  • java
 
阅读更多
原文地址:http://www.myexception.cn/image/895594.html



import com.sun.image.codec.jpeg.JPEGCodec;
在Eclipse中处理图片时,需要引入两个包:
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
但是此时Eclipse却报错:
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就可以编译通过。
分享到:
评论

相关推荐

    import com.sun.image.codec.jpeg.JPEGImageEncoder;包的下载

    import sun.misc.BASE64Decoder; import sun.misc.BASE64Encoder; 报错: Access restriction: The type JPEGImageEncoder is not accessible due to restriction on required library C:\Java\jre1.6.0_07\lib\rt....

    java识别验证码.docx

    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 ...

    java 图片放大缩小

    import com.sun.image.codec.jpeg.JPEGCodec; import com.sun.image.codec.jpeg.JPEGImageEncoder; /** * @author WENLIANG * * 该类主要用于将图片重绘 */ public class RedrawImage { public RedrawImage() {} ...

    jsp登陆验证码生成源代码

    import com.sun.image.codec.jpeg.JPEGCodec; public class BuildImageServlet extends HttpServlet { private Random generator = new Random(); private Color getRandColor(int fc, int bc) { //给定范围获得...

    rt.jar【sun.misc.BASE64Decoder】

    引入rt.jar。解决依赖 import sun.misc.BASE64Decoder; import com.sun.image.codec.jpeg.JPEGCodec; import com.sun.image.codec.jpeg.JPEGImageEncoder;

    文件生成图片

    <br>import com.sun.image.codec.jpeg.JPEGCodec; import com.sun.image.codec.jpeg.JPEGEncodeParam; import com.sun.image.codec.jpeg.JPEGImageEncoder; <br>public class CreatePic { ...

    解决eclipse导入rt包问题

    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 ...

    Java实现远程屏幕监视

    import com.sun.image.codec.jpeg.ImageFormatException; import com.sun.image.codec.jpeg.JPEGCodec; public class ServerProcessor extends Thread { // private Socket client; public static final int ...

    jsp 验证码 控件

    import com.sun.image.codec.jpeg.JPEGImageEncoder; public class CodePicServlet extends HttpServlet { protected void service (HttpServletRequest request,HttpServletResponse response)throws ...

    .jsp和servlet验证码

    import com.sun.image.codec.jpeg.JPEGImageEncoder; public class MyVerifyCode extends HttpServlet { private static MyVerifyCode instance; private final String ATTRIBUTE_NAME = "verifycode"; // ��...

Global site tag (gtag.js) - Google Analytics