基础64解码在android问题

时间:2016-05-27 09:52:58

标签: android encoding base64 decoding utf8-decode

我已使用此编码过程var

从服务器收到解码String
 data = System.Text.Encoding.UTF8.GetBytes (text); 
 text =  System.Convert.ToBase64String (data);

在我的Android应用中我们使用

byte [] data = Base64.decode(base64data,Base64.DEFAULT);
String text1 = new String (data, "UTF-8");

但是当我们将此设置设置为文本视图时,它不会显示格式化。

谢谢....

1 个答案:

答案 0 :(得分:0)

在设置文本之前使用它。

text1 = text1.replaceAll("[\n\r]", "WRAP");
text1 = text1.replaceAll("WRAP", "\n\r");