当我调用网络服务时,我会在该 url 中传递某些值。
例子:
https://website.com/webserviceName/login?userName=user&password=pass
但是如果这些值中包含“&”怎么办。当我形成这样一个包含带有“&”的项目的 url 时,该 url 在该点中断会返回一个错误代码。我该如何解决这个问题。
例子:
https://website.com/webserviceName/login?userName=user&user&password=pass
这个网址的问题是它在第一个'&'处中断
该问题可以通过使用URLEncoder.encode(urlXml)
http://www.tutorialspoint.com/html/html_url_encoding.htm来解决
谢谢大家