java - 请问OkHttp 3如何设置post请求的编码呢?
ringa_lee
ringa_lee 2017-04-17 17:34:56
0
1
527

这是create方法的源码:

public static RequestBody create(MediaType contentType, String content) {
    Charset charset = Util.UTF_8;
    if (contentType != null) {
      charset = contentType.charset();
      if (charset == null) {
        charset = Util.UTF_8;
        contentType = MediaType.parse(contentType + "; charset=utf-8");
      }
    }
    byte[] bytes = content.getBytes(charset);
    return create(contentType, bytes);
  }

这个content是类似于“a=88&b=99”这样的字符串吗?

ringa_lee
ringa_lee

ringa_lee

reply all(1)
迷茫

It is recommended that you use postman, which is an http debugging plug-in for chrome. It can directly generate okhttp code.
This is the okhttp java code generated by postman when I debugged it myself.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!