gpt4 book ai didi

android - 无法解析 Base64.encodeToString

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:25:00 32 4
gpt4 key购买 nike

我正在尝试使用以下代码将图像保存在 firebase 上。

  Bitmap bm = BitmapFactory.decodeFile(imgDecodableString);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bm.compress(Bitmap.CompressFormat.JPEG,100,baos);
byte[] byteArray = baos.toByteArray();
String encodedImage = Base64.encodeToString(byteArray,Base64.DEFAULT);

但是我遇到了一个错误:

cannot resolve method 'encodeToString(byte[],?)' 
cannot resolve symbol 'DEFAULT'

如何修复这个错误。

最佳答案

我认为你的文件中有 import org.apache.commons.codec.binary.Base64,请重新检查并尝试使用 import android.util.Base64。它将解决您的cannot resolve method 'encodeToString(byte[],?)'问题。

关于android - 无法解析 Base64.encodeToString,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37086664/

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