我是靠谱客的博主 有魅力龙猫,最近开发中收集的这篇文章主要介绍程序包com.sun.image.codec.jpeg不存在 的几种解决方案和遇到的坑maven打包出现XXXX.java:[3,32] 程序包com.sun.image.codec.jpeg不存在1.不用jpeg这个类:2.想办法打包的时候包含进rt.jar3.打包的时候包含rt.jar的文件夹:4.你也可以把rt.jar放到webapp/WEB-INF/lib路径下面,然后就只要:5.遇到的坑:,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
maven打包出现XXXX.java:[3,32] 程序包com.sun.image.codec.jpeg不存在
总结一下有几种解决方案:
1.不用jpeg这个类:
ByteArrayOutputStream out = null;
byte[] b = null;
try {
BufferedImage bi = ImageIO.read(is);
Image Itemp = bi.getScaledInstance(wdith, height, BufferedImage.SCALE_SMOOTH);
BufferedImage thumbnail = new BufferedImage(wdith, height, BufferedImage.TYPE_INT_RGB);
thumbnail.getGraphics().drawImage(Itemp, 0, 0, null);
out = new ByteArrayOutputStream();
// 绘图
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(thumbnail);
param.setQuality(1.0f, false);
encoder.encode(thumbnail);
out.flush();
b = out.toByteArray();
out.close();
bi.flush();
bi = null;
} catch (IOException e) {
logger.error(Util.stackTrace2String(e));
}finally{
if(out != null){
try {
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
2.想办法打包的时候包含进rt.jar
比如利用maven-compiler-plugin里面的bootclasspath:
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<optimize>true</optimize>
<debug>true</debug>
<showDeprecation>true</showDeprecation>
<showWarnings>false</showWarnings>
<compilerArguments>
<verbose />
<bootclasspath>${java.home}/lib/rt.jar;${java.home}/lib/jce.jar</bootclasspath>
</compilerArguments>
</configuration>
</plugin>
3.打包的时候包含rt.jar的文件夹:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>utf8</encoding>
<compilerArguments>
<extdirs>${env.JAVA_HOME}/jre/lib</extdirs>
</compilerArguments>
</configuration>
</plugin>
4.你也可以把rt.jar放到webapp/WEB-INF/lib路径下面,然后就只要:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>utf8</encoding>
<compilerArguments>
<extdirs>${basedir}/src/main/webapp/WEB-INF/lib</extdirs>
</compilerArguments>
</configuration>
</plugin>
5.遇到的坑:
A.<bootclasspath><extdirs>两个标签,如果配置多个数据,mac,linux用冒号(:),而windows用分号(;)
B.<bootclasspath><extdirs>两个标签,windows路径用,mac,linux用/
参考:
https://www.cnblogs.com/sagech/p/5025412.html
最后
以上就是有魅力龙猫为你收集整理的程序包com.sun.image.codec.jpeg不存在 的几种解决方案和遇到的坑maven打包出现XXXX.java:[3,32] 程序包com.sun.image.codec.jpeg不存在1.不用jpeg这个类:2.想办法打包的时候包含进rt.jar3.打包的时候包含rt.jar的文件夹:4.你也可以把rt.jar放到webapp/WEB-INF/lib路径下面,然后就只要:5.遇到的坑:的全部内容,希望文章能够帮你解决程序包com.sun.image.codec.jpeg不存在 的几种解决方案和遇到的坑maven打包出现XXXX.java:[3,32] 程序包com.sun.image.codec.jpeg不存在1.不用jpeg这个类:2.想办法打包的时候包含进rt.jar3.打包的时候包含rt.jar的文件夹:4.你也可以把rt.jar放到webapp/WEB-INF/lib路径下面,然后就只要:5.遇到的坑:所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复