Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for malformedUtf8Encoding (0.48 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://host/%").pathSegments).containsExactly("%")
        assertThat(parse("http://github.com/%%30%30").pathSegments)
          .containsExactly("%00")
      }
    
      @Test
      fun malformedUtf8Encoding() {
        // Replace a partial UTF-8 sequence with the Unicode replacement character.
        assertThat(parse("http://host/a/%E2%98x/c").pathSegments)
          .containsExactly("a", "\ufffdx", "c")
      }
    
      @Test
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
Back to top