我通过使用带有utf8编码的json从我的远程服务器获得了这样的“第1行\ n第2行”的数据,当我尝试将数据放入我的EditText时,换行符\ n无法工作使用URLDecoder.decode()解析数据,因为我使用数据库。 任何建议
一切顺利。答案 0 :(得分:11)
解决,使用
myString.replace("\\n", "\n");
答案 1 :(得分:0)
String value=userdataArrayList2[0].toString().trim().replace("\\n", "\n");
在后端数据库中插入如下数据:
name is osama\nibrahim
结果:
name is osama
ibrahim