Text & Charsets

This feature allows to processes the plain text content in request and response: fills Accept header with registered charsets, encode request body and decode response body according to ContentType charset.

This feature is defined in the class io.ktor.client.features.HttpPlainText and no additional artifacts are required.

Configuration

If no configuration specified in configuration or HTTP call properties, Charsets.UTF_8 is used by default.

  1. val client = HttpClient(HttpClientEngine) {
  2. Charsets {
  3. // Allow to use `UTF_8`.
  4. register(Charsets.UTF_8)
  5. // Allow to use `ISO_8859_1` with quality 0.1.
  6. register(Charsets.ISO_8859_1, quality=0.1f)
  7. // Specify Charset to send request(if no charset in request headers).
  8. sendCharset = ...
  9. // Specify Charset to receive response(if no charset in response headers).
  10. responseCharsetFallback = ...
  11. }
  12. }