
name.remal.java.net.HttpURLConnection.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Java & Kotlin tools: common
The newest version!
package name.remal
import java.net.HttpURLConnection
import java.nio.charset.Charset
import java.nio.charset.StandardCharsets.UTF_8
val HttpURLConnection.contentCharset: Charset
get() {
contentType
?.toUpperCase()
?.substringAfter("CHARSET=", "")
?.substringBefore(';')
?.trim()
?.let {
try {
return Charset.forName(it)
} catch (e: IllegalArgumentException) {
// do nothing
}
}
return UTF_8
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy