我的 EditText 中的 Android 换行符

发布于 2024-09-19 12:30:54 字数 162 浏览 4 评论 0原文

我通过使用带有 utf8 编码的 json 从远程服务器获得了一些类似“第 1 行 \n 第 2 行”的数据,当我尝试将数据放入我的 EditText 时,尽管取消了数据的大小写,换行符 \n 仍然不起作用通过使用 URLDecoder.decode() 因为我使用数据库。 任何建议

都最好。

i got some data like this "line 1 \n line 2" from my distant server by using json with utf8 encoding, and when i try to put the data in my EditText the newline \n doesn't work in spite of unscaping the data by using URLDecoder.decode() because i use databases.
Any suggestions

all the best .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心欲静而疯不止 2024-09-26 12:30:54

解决了,通过使用

myString.replace("\\n", "\n");

Solved , by using

myString.replace("\\n", "\n");
∞梦里开花 2024-09-26 12:30:54
String value=userdataArrayList2[0].toString().trim().replace("\\n", "\n");

在后端数据库中插入如下数据:

name is osama\nibrahim 

结果:

name is osama
ibrahim
String value=userdataArrayList2[0].toString().trim().replace("\\n", "\n");

In back end database insert data like this :

name is osama\nibrahim 

result:

name is osama
ibrahim
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文