Base64编码在线工具



关于Base64编码在线工具:

这个在线Base64编码工具可以帮助您将一个输入字符串转换成Base64编码格式的字符串.

comic base64 encode

Base64编码能加密我的数据吗?

不能.Base64只能更改字符串的外观,不需要密码来解码Base64字符串.

更多关于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):

  1. import base64
  2.  
  3. def base64_encode(str):
  4. return base64.b64encode(str.encode())

用Java编码字符串的Base64 (用 package MessageDigest):

  1. import java.util.Base64;
  2.  
  3. public String encode(String str) {
  4. byte[] encodedBytes = Base64.getEncode().encode(str.getBytes());
  5. String text = new String(encodedBytes);
  6. return text;
  7. }