本文介绍了Html.fromHtml()删除回车符“& #xD","\ n".的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
作为响应,我得到一个字符串,它是windows .ini文件,每对都有
,最后这是Canonical XML中的回车符.
As a response I am getting a string which is windows .ini file each pair has 
in the end this is the carriage-return in Canonical XML.After
String ini = Html.fromHtml(response).toString();
ini获取没有换行符的字符串,而不是空格.如何在他们的位置保持换行符?
ini gets string with no line breaks instead of them white-spaces. How to keep line-breaks on their places?
响应为
而且我必须按原样处理,服务器不会提供任何更改.
and I have to deal with it as is, no change will be provided from server.
推荐答案
如果响应字符串中的
被替换为<br/>
输出字符串,则包含正确的换行符.
If &#xD;
replaced in response string with <br/>
output string contains proper line breaks.
这篇关于Html.fromHtml()删除回车符“& #xD","\ n".的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!