gpt4 book ai didi

java - 为 URLDecoder.decode() 抛出 UnsupportedEncodingException 的示例字符串

转载 作者:行者123 更新时间:2023-12-02 10:23:28 26 4
gpt4 key购买 nike

任何人都可以建议一个示例字符串(sampleString 的值)来获取
下面给出的代码片段中的UnsupportedEncodingException

public static String decode(String sampleString)  
{
try {
return URLDecoder.decode(sampleString, "UTF-8" );
} catch (UnsupportedEncodingException e) {
return "Issue while decoding" +e.getMessage();
}
}

最佳答案

直接从 URLDecoder.decode(String, String) 的实现

if (enc.length() == 0) {
throw new UnsupportedEncodingException ("URLDecoder: empty string enc parameter");
}

所以它

URLDecoder.decode(sampleString, "" );  

抛出异常。

关于java - 为 URLDecoder.decode() 抛出 UnsupportedEncodingException 的示例字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54146678/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com