- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for unicodeBytesWithCharset (0.45 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/ResponseBodyTest.kt
@Test fun unicodeBytes() { val text = "eile oli oliiviõli" val body = text.toResponseBody() assertThat(body.bytes()).isEqualTo(text.encodeToByteArray()) } @Test fun unicodeBytesWithCharset() { val text = "eile oli oliiviõli".encodeToByteArray() val body = text.toResponseBody("text/plain; charset=EBCDIC".toMediaType()) assertThat(body.bytes()).isEqualTo(text) } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.9K bytes - Viewed (0)