欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

项目中程序包com.sun.image.codec.jped不存在解决方法

程序员文章站 2022-07-12 20:08:19
...

Maven下面编译时,报错提示信息如图

项目中程序包com.sun.image.codec.jped不存在解决方法

网上查下原因说不能使用com.sun包下的类库,一些老的Java代码在JDK1.7下编译会报错,JPEGCodec类已经在JDK1.7 和后面的版本中移除,而本项目用的是JDK1.7

解决方案有三种:

第一种通过配置maven-compiler-plugin插件可以可解决此问题(引入rt.jar)。 

<!-- 编译插件 -->  
<plugin>  
    <groupId>org.apache.maven.plugins</groupId>  
    <artifactId>maven-compiler-plugin</artifactId>  
    <version>${maven-compiler.version}</version>  
    <configuration>  
        <source>${java.version}</source>  
        <target>${java.version}</target>  
        <encoding>${project.build.sourceEncoding}</encoding>  
            <compilerArguments>  
                  <verbose />  
              <bootclasspath>${java.home}/lib/rt.jar</bootclasspath>  
        </compilerArguments>  
    </configuration>  
</plugin>  

第二种是修改代码API的问题(替换为ImageIO来进行图片处理)。

原代码格式:

JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(new FileOutputStream(new File(path)));
encoder.encode(bi);
替换为:

String name = path.substring(path.lastIndexOf(".") + 1);
ImageIO.write(bi, name , new File(path));
本工程按照格式更换如下图:

项目中程序包com.sun.image.codec.jped不存在解决方法
第三种把JDK换成JDK1.6或者更低版本(不推荐)。