JDK 新特性之Base64加密和解密

jdk1.8新增長了Base64加密和解密的處理,不須要引入別的包就能夠實現加密

直接上代碼code

public static void main(String[] args) { try { String hello1 = "hello,你好!"; byte[] bytes = hello1.getBytes("utf-8"); System.out.println("加密前:"+hello1); String enStr = Base64.getEncoder().encodeToString(bytes); System.out.println("加密後:"+enStr); String hello2 = new String(Base64.getDecoder().decode(enStr),"utf-8"); System.out.println("解密後:"+hello2); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } }utf-8

這是運行結果get

加密前:hello,你好! 加密後:aGVsbG8s5L2g5aW977yB 解密後:hello,你好!io

相關文章
相關標籤/搜索