如何获取用户在android编辑文本中输入的所有特殊字符
嘿伙计们 我在我的应用程序中编辑了文本
用户可以键入任何特殊字符,例如 @#$%^&* 并显然会制作笑脸
我必须通过在 url 中附加消息来将此消息发布到服务器,
但我有 # 和 & ;无法识别
提前致谢
Hey guys
i have edit text in my application
User can type any of the special characters like @#$%^&* and obviously make smileys
I have to post this message to server by appending the messsage in url
but i have exp that # and & are not recognised
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 URLEncoder 在附加到 url 之前对字符串进行编码。
you can use URLEncoder to encode your string before attaching to the url.