如何对用户名和密码进行编码?
How to encode username and password?
我需要通过请求正文发送经过编码的用户名和密码。
在这里,我以 JSON object.
的格式发送用户名和密码
怎么做?
提前致谢。
尝试
编码
String encodedUsername = URLEncoder.encode(username);
String encodedPassword = URLEncoder.encode(password);
解码
String decodedUsername = URLDecoder.decode(encodedUsername);
String decodedPassword = URLDecoder.decode(encodedPassword);
一个简单的 Google 搜索就可以解决问题...
URLEncoder should be the way to go. You only need to keep in mind to
encode only the individual query string parameter name and/or value,
not the entire URL, for sure not the query string parameter separator
character &
nor the parameter name-value separator character =
.
String q = "random word £500 bank $";
String url = "http://example.com/query?q=" + URLEncoder.encode(q, "UTF-8");
...
来源:
Java URL encoding of query string parameters
我需要通过请求正文发送经过编码的用户名和密码。 在这里,我以 JSON object.
的格式发送用户名和密码怎么做?
提前致谢。
尝试
编码
String encodedUsername = URLEncoder.encode(username);
String encodedPassword = URLEncoder.encode(password);
解码
String decodedUsername = URLDecoder.decode(encodedUsername);
String decodedPassword = URLDecoder.decode(encodedPassword);
一个简单的 Google 搜索就可以解决问题...
URLEncoder should be the way to go. You only need to keep in mind to encode only the individual query string parameter name and/or value, not the entire URL, for sure not the query string parameter separator character
&
nor the parameter name-value separator character=
.String q = "random word £500 bank $"; String url = "http://example.com/query?q=" + URLEncoder.encode(q, "UTF-8");
...
来源: Java URL encoding of query string parameters