Base64在線解碼工具
關於Base64在線解碼工具:
這個在線Base64解碼工具可以幫助您將一個Base64編碼格式字符串轉換成普通UTF-8字符串.
更多關於Base64的鏈接:
RFC 3548: https://tools.ietf.org/html/rfc3548.html
Python中的Base64: https://docs.python.org/2/library/base64.html
Java中的Base64: https://docs.oracle.com/javase/8/docs/api/java/util/Base64.html
用Python解碼字符串的Base64 (用package base64):
import base64 def base64_decoder(str): return base64.b64decode(str.encode())
用Java解碼字符串的Base64 (用package MessageDigest):
import java.util.Base64; public String decode(String str) { byte[] decodedBytes = Base64.getDecoder().decode(str.getBytes()); String text = new String(decodedBytes); return text; }