import com.sun.image.codec.jpeg.*

后端 未结 6 982
时光取名叫无心
时光取名叫无心 2020-11-27 16:37

I have a Java program when I compile it I get the following error

[javac] ...\\MyClass.java:33: package com.sun.image.codec.jpeg does not exist
[javac] impor         


        
6条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-27 17:16

    Add the below configuration in pom.xml for this issue

    
            
                
                    org.apache.maven.plugins
                    maven-compiler-plugin
                    3.8.1
                    
                        1.7
                        1.7
                        UTF-8
                        
                        
                                ${java.home}/lib/rt.jar${path.separator}${java.home}/lib/javaws.jar${path.separator}${java.home}/lib/jce.jar
                            
                         
                    
                
            
        
    

    It works for me.

提交回复
热议问题