zoukankan      html  css  js  c++  java
  • Java中base64与byte[]转换

    1.base64转byte[]

    导包:

    import java.util.Base64
    

    转换:

    String base64Str = base64的字符串;
    byte[] bytes = Base64.getDecoder().decode(base64Str.trim());

    2.byte[]转base64

    Byte[] srcBytes = 字节数组
    Base64.getEncoder().encodeToString(srcBytes)

         

    就是这么简单,你学废了吗?感觉有用的话,给笔者点个赞吧 !
  • 相关阅读:
    SEO搜索引擎
    SEO
    编程的智慧
    ES6编程规范
    面试题集
    motto
    motto
    JS
    motto
    Linux
  • 原文地址:https://www.cnblogs.com/zys2019/p/14377570.html
Copyright © 2011-2022 走看看