package com.sun.image.codec.jpeg does not exist

jenkins bulid時報錯,是由於com.sun.image.codec.jpeg是sun公司私有包,oracle在1.7後再也不支持oracle

修改下代碼便可解決問題spa

原code:code

BufferedImage tag = new BufferedImage((int) newWidth, (int) newHeight, BufferedImage.TYPE_INT_RGB);orm

FileOutputStream out = new FileOutputStream(dir+filename);        string

JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);         jenkins

encoder.encode(tag);it

現code:ast

String formatName = filename.substring(filename.lastIndexOf(".") + 1);form

ImageIO.write(tag, formatName, new File(dir+ filename));file

相關文章
相關標籤/搜索