为什么Android Studio无法识别Base64.encodeBase64?

时间:2015-04-24 21:49:49

标签: java android android-studio libraries

我尝试运行以下代码,但是我无法使用encodeBase64() 我已经尝试使用 Alt + Enter 导入这些库。

enter image description here

我怎样才能让它发挥作用?

1 个答案:

答案 0 :(得分:7)

使用它:

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

而不是你正在使用的,我也建议你使用: .getBytes("UTF-8");代替data.getBytes(); UTF-8始终是更好的选择。 希望这会对你有所帮助。