标签: java android android-studio libraries
我尝试运行以下代码,但是我无法使用encodeBase64() 我已经尝试使用 Alt + Enter 导入这些库。
encodeBase64()
我怎样才能让它发挥作用?
答案 0 :(得分:7)
使用它:
String result = Base64.encodeToString(data, Base64.DEFAULT);
而不是你正在使用的,我也建议你使用: .getBytes("UTF-8");代替data.getBytes(); UTF-8始终是更好的选择。 希望这会对你有所帮助。
.getBytes("UTF-8");
data.getBytes();