博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java处理图片时编译不通过
阅读量:5996 次
发布时间:2019-06-20

本文共 991 字,大约阅读时间需要 3 分钟。

Java中处理图片时,MyEclipse需要导入以下包:

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

  import com.sun.image.codec.jpeg.JPEGEncodeParam;
  import com.sun.image.codec.jpeg.JPEGImageEncoder; 

但编译器报错,错误信息: 

Access restriction: The type JPEGCodec is not accessible due to restriction on required library/home/dsp/Applications/MyEclipse/binary/com.sun.java.jdk7.linux.x86_64_1.7.0.u45/jre/lib/rt.jarAccess restriction: The type JPEGEncodeParam is not accessible due to restriction on required library /home/dsp/Applications/MyEclipse/binary/com.sun.java.jdk7.linux.x86_64_1.7.0.u45/jre/lib/rt.jarAccess restriction: The type JPEGImageEncoder is not accessible due to restriction on required library /home/dsp/Applications/MyEclipse/binary/com.sun.java.jdk7.linux.x86_64_1.7.0.u45/jre/lib/rt.jar

解决办法:

  MyEclipse默认把这些受访问限制的API编译级别设置为:ERROR,只需把:Window -> Preferences -> Java -> Complicer -> Errors/Warnings

  选项 Deprecated and restricted API 中的 Forbidden references(access rules) 由 Error 设置为 Warning 即可编译通过!

^_^

转载地址:http://lgmlx.baihongyu.com/

你可能感兴趣的文章
gen_server模块
查看>>
[AngularJS] $http cache
查看>>
hadoop 开发环境搭建
查看>>
[在职软件工程]数据挖掘-概念与技术
查看>>
Oracle动态SQL语句
查看>>
RabbitMQ消息队列(五):Routing 消息路由 2[原]
查看>>
Debug 和 Release 编译方式的本质区别
查看>>
Performing a thread dump in Linux or Windows--reference
查看>>
【转载】python super的用法
查看>>
Material Design系列第三篇——Using the Material Theme
查看>>
ActivityManager
查看>>
c#实现无标题栏窗口的拖动
查看>>
再鼓勇气
查看>>
[PHP]PHPOffice/PHPExcel数据导入方法
查看>>
Eclipse使用异常——tomcat启动
查看>>
測试之路3——对照XML文件2
查看>>
HDU 1201
查看>>
把Scala代码当作脚本运行
查看>>
Cocos3d初探
查看>>
JAVA的extends使用方法
查看>>