今天在项目里遇到一个问题,明明有这个Base64这类,但是项目就是跑不起来。
包com.sun.org.apache.xerces.internal.impl.dv.util不存在后面查资料才知道,这个类在jdk1.8版本里被废弃了,我用的是jdk1.9。
我的解决办法:去apache官网http://commons.apache.org/proper/commons-codec/download_codec.cgi下载Apache Commons Codec,目前版本1.14。
导入项目包com.sun.org.apache.xerces.internal.impl.dv.util不存在
引用改成:import org.apache.commons.codec.binary.Base64;
目前测试成功,可行。

相关文章: