gpt4 book ai didi

android - 如何在 android studio 的 BASE64 中编码任何类型的文件 ("JPG"、 "PNG"、 "DOCX"、 "ZIP"、 "GIF"、 "MP3"...)?

转载 作者:搜寻专家 更新时间:2023-11-01 08:26:46 25 4
gpt4 key购买 nike

我需要进行此编码,以便最后再次解码为原始文件,有人可以帮忙吗?

最佳答案

您可以使用 commons.apache.org/proper/commons-codec/用于编码和解码。

import org.apache.commons.codec.binary.Base64;


byte[] encodedBytes = Base64.encodeBase64("YourResursesAsString".getBytes());
System.out.println("encodedBytes " + new String(encodedBytes));
byte[] decodedBytes = Base64.decodeBase64(encodedBytes);
System.out.println("decodedBytes " + new String(decodedBytes));

关于android - 如何在 android studio 的 BASE64 中编码任何类型的文件 ("JPG"、 "PNG"、 "DOCX"、 "ZIP"、 "GIF"、 "MP3"...)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44248353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com