我正在寻找在android中使用html中的空格和符号转换文本的方法,
例如:
"Hi this is my text" to "Hi%20this%20is%20my%20text"
还有符号......
任何人都知道这么简单吗?
我发现将html文本转换为纯文本。
先谢谢......
答案 0 :(得分:6)
您需要的不是HTML而是网址编码,使用URLEncoder.encode
,请参阅http://developer.android.com/reference/java/net/URLEncoder.html
例如,如果你写了
String s = URLEncoder.encode("Hi this is my text", "UTF-8");
变量s
将包含Hi%20this%20is%20my%20text
答案 1 :(得分:2)
为此目的使用TextUtils.htmlEncode()。