不使用BASE64Encoder、BASE64Decoder
BASE64Encoder/BASE64Decoder类在sun.misc包下,是sun公司的内部方法,后期有删除的潜在可能,建议使用apache commons.codec下的Base64替代。
maven依赖:
1 <dependency> 2 <groupId>commons-codec</groupId> 3 <artifactId>commons-codec</artifactId> 4 <version>${commons-codec.version}</version> 5 </dependency>
java代码:
Base64.encodeBase64String(...);
Base64.decodeBase64(...);