当前位置:   article > 正文

警告: BASE64Decoder是内部专用 API, 可能会在未来发行版中删除_sun.misc.base64decoder是内部专用 api, 可能会在未来发行版中删除

sun.misc.base64decoder是内部专用 api, 可能会在未来发行版中删除

开发过程中遇到这个问题,虽然不影响项目运行,打包发布,但还是要把警告扼杀在摇篮中。
sun.misc包都是sun公司的内部类,并没有在java api中公开过,不建议使用,所以使用这些方法是不安全的,将来随时可能会从中去除,所以相应的应该使用替代的对象及方法。

针对警告: BASE64Decoder是内部专用 API, 可能会在未来发行版中删除解决办法

采用org.apache.commons.codec.binary.Base64替

在这里插入图片描述

import org.apache.commons.codec.binary.Base64;

/**
 * @author wind
 * @version V1.0
 * @className Base64Encoder
 * @createDate 2021年12月28日
 */
public class Base64Encoder  {

    /**
     * @param bytes
     * @return
     */
    public static byte[] decode(final byte[] bytes) {
        return Base64.decodeBase64(bytes);
    }

    /**
     * 二进制数据编码为BASE64字符串
     *
     * @param bytes
     * @return
     * @throws Exception
     */
    public static String encode(final byte[] bytes) {
        return new String(Base64.encodeBase64(bytes));
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
原方法
 
BASE64Encoder encoder = new BASE64Encoder();
 
//String imagestr new String(base64en.encode(str.getBytes("GBK"))).replace("\n","").replace("\r","");
 
String imagestr =  encoder.encode(captcha);
 
BASE64Decoder decoder = new BASE64Decoder();
 
byte[] bytes = decoder.decodeBuffer(imagestr);
 
现方法
 
import java.util.Base64.Encoder
import java.util.Base64.Decoder
 
Encoder encoder = Base64.getEncoder();
String result = encoder.encodeToString(byteArray);
 
Decoder decoder = Base64.getDecoder();
byte[] result = decoder.decode(str);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/1020243
推荐阅读
相关标签
  

闽ICP备14008679号