Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for toUriQueryParameterValueSpecialCharacters (0.12 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

          .isEqualTo("http://host/?%3D%5B%5D%3A%3B%22%7E%7C%3F%23%40%5E%2F%24%25*=a")
        assertThat(url.queryParameter("=[]:;\"~|?#@^/$%*")).isEqualTo("a")
      }
    
      @Test
      fun toUriQueryParameterValueSpecialCharacters() {
        val url =
          HttpUrl
            .Builder()
            .scheme("http")
            .host("host")
            .addQueryParameter("a", "=[]:;\"~|?#@^/$%*")
            .build()
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 12K bytes
    - Click Count (0)
Back to Top