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; }