Skip to content
Advertisement

Why doesn’t Android Studio recognize Base64.encodeBase64?

I’m trying run the following code, however I cannot use encodeBase64().
I’ve already tried to import such libraries using Alt + Enter.

enter image description here

How can I make it work?

Advertisement

Answer

use this:

String result = Base64.encodeToString(data, Base64.DEFAULT);

instead of what you are using, i also advise you to use: .getBytes("UTF-8"); instead of data.getBytes(); UTF-8 is always a better choice. hope this will help you.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement