当前位置:   article > 正文

java将二进制数组转字符串_java 二进制转字符串

java 二进制转字符串
  1. 将二进制数组转字符串
        String str = new String(bytes,StandardCharsets.UTF_8);
  • 1
  1. 将字符串转二进制数组
        byte[] bytes = str.getBytes(StandardCharsets.UTF_8);
  • 1
  1. 将base64加密的字符串解密并输出
    Base64Utils工具类来自于org.springframework.util.Base64Utils
    public String decode(String str){
        byte[] bytes = Base64Utils.decodeFromString(str);
        return new String(bytes,StandardCharsets.UTF_8);
    }
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/617981
推荐阅读
相关标签
  

闽ICP备14008679号