
org.scalatra.UriDecoder.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatra-javax_3 Show documentation
Show all versions of scalatra-javax_3 Show documentation
The core Scalatra framework
The newest version!
package org.scalatra
import java.nio.charset.StandardCharsets
import util.UrlCodingUtils
object UriDecoder {
def decode(uri: String): String = {
UrlCodingUtils.urlDecode(
toDecode = UrlCodingUtils.ensureUrlEncoding(uri),
charset = StandardCharsets.UTF_8,
plusIsSpace = false)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy