
name.remal.java.net.HttpURLConnection.kt Maven / Gradle / Ivy
package name.remal
import java.net.HttpURLConnection
import java.nio.charset.Charset
val HttpURLConnection.contentCharset: Charset
get() {
contentType
?.toUpperCase()
?.substringAfter("CHARSET=", "")
?.substringBefore(';')
?.trim()
?.let {
try {
return Charset.forName(it)
} catch (e: IllegalArgumentException) {
// do nothing
}
}
return Charsets.UTF_8
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy