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

这是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

모든 응답(1)
迷茫

okhttp 코드를 직접 생성할 수 있는 Chrome용 http 디버깅 플러그인인 postman을 사용하는 것이 좋습니다.
이것은 제가 디버깅하는 동안 Postman이 생성한 okhttp Java 코드입니다.

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!