无法解析符号“默认”

时间:2019-03-10 17:13:00

标签: android utf-8 decode decoding

我正在尝试在Android Studio中解码文本,但是它显示了Base64上的错误。默认

byte[] decodedString = Base64.Decoder(message, Base64.DEFAULT);
Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);

有什么解决办法吗?

解码错误:
Error in Decoding

错误找不到符号错误默认值:
Error Cannot Find Symbol Error Default

1 个答案:

答案 0 :(得分:0)

我通过以下两个步骤解决了这个问题;

添加此

import android.util.Base64;

删除这些

import java.util.Base64;
import java.util.Base64.Decoder;