HttpPost过程中使用的URLEncoder.encode(something, encode)

Posted 万物为铜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HttpPost过程中使用的URLEncoder.encode(something, encode)相关的知识,希望对你有一定的参考价值。

URLEncoder.encode("刘美美", "utf-8").toString()       =     %E5%88%98%E7%BE%8E%E7%BE%8E

然后%E5%88%98%E7%BE%8E%E7%BE%8E通过

URLDecoder.decode("%E5%88%98%E7%BE%8E%E7%BE%8E", "utf-8").toString()就可以还原为刘美美

以上是关于HttpPost过程中使用的URLEncoder.encode(something, encode)的主要内容,如果未能解决你的问题,请参考以下文章

HttpClient 实现POST请求

使用 URLDecoder 和 URLEncoder 对中文字符进行编码和解码

java (Android) 中的 URLEncoder 编码 / URLDecoder 解码

URLDecoder与URLEncoder

Java 使用URLEncoder.encode和URLDecoder.decode编解码(utf-8)中文及特殊字符

java的web开发中URLEncoder.encode方法