Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Wong (0.13 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/RequestBodyCompression.java

        private RequestBody gzip(final RequestBody body) {
          return new RequestBody() {
            @Override public MediaType contentType() {
              return body.contentType();
            }
    
            @Override public long contentLength() {
              return -1; // We don't know the compressed length in advance!
            }
    
            @Override public void writeTo(BufferedSink sink) throws IOException {
    Java
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat May 25 18:02:55 GMT 2019
    - 3.8K bytes
    - Viewed (0)
Back to top