开发者社区 问答 正文

请问OkHttp 3如何设置post请求的编码呢?

screenshot
这是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”这样的字符串吗?

展开
收起
蛮大人123 2016-03-12 10:30:14 3914 分享 版权
1 条回答
写回答
取消 提交回答
  • 我说我不帅他们就打我,还说我虚伪

    推荐你使用 postman ,这个是 chrome 的一款http调试的插件,他可以直接生成okhttp 的代码。
    这是我自己调试时用 postman生成的okhttp 的java代码。
    screenshot

    2019-07-17 19:00:19
    赞同 展开评论
问答地址: