【同步】BOOT 和 CLOUD 的功能

pull/229/head
YunaiV 2025-12-07 18:23:49 +08:00
parent 667cf9d1c9
commit 84834c7a65
1 changed files with 2 additions and 1 deletions

View File

@ -44,8 +44,9 @@ public class HttpUtils {
* @param value * @param value
* @return * @return
*/ */
@SneakyThrows
public static String decodeUtf8(String value) { public static String decodeUtf8(String value) {
return URLDecoder.decode(value, StandardCharsets.UTF_8); return URLDecoder.decode(value, StandardCharsets.UTF_8.name());
} }
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")