Base64.encodeToString
时间: 2024-01-06 14:05:51 浏览: 114
Java Base64支持encodeBase64String和decodeBase64String的包
5星 · 资源好评率100%
Base64.encodeToString() is a method in the android.util.Base64 class that converts a byte array into a Base64 encoded string. The method takes two parameters: the byte array to be encoded and a flag to specify the encoding options. In the given code, it is used to convert the byte array representation of a bitmap image into a Base64 encoded string.
阅读全文