urlDecode

open fun urlDecode(input: String): String

URL解码

若想自己指定字符集,可以使用 urlDecode方法

Return

URL解码后的字符串

Parameters

input

要解码的字符串

open fun urlDecode(input: String, charset: String): String

URL解码

若系统不支持指定的解码字符集,则直接将input原样返回

Return

URL解码为指定字符集的字符串

Parameters

input

要解码的字符串

charset

字符集