提问人:ND-N175 提问时间:11/16/2023 最后编辑:ND-N175 更新时间:11/16/2023 访问量:46
为什么函数 uri 到 url 在 jdk21 中不起作用 [关闭]
Why function uri to url doesn't work in jdk21 [closed]
问:
我在 Intellij 中使用 URL,当我使用 时,它不起作用;它抛出异常:未处理的异常:java.net.MalformedURLException。我使用 URL 来构建 API 谷歌翻译。URI.toURL()
这是我的代码:
String rootAPI = "https://translate.google.com/?sl=en&tl=vi&text=";
String encodedText = URLEncoder.encode(text, StandardCharsets.UTF_8); // Encode the entire text string
String urlString = rootAPI + encodedText + "&op=translate";
URI uri = URI.create(urlString);
URL url = uri.toURL();
我尝试了很多方法,例如将 21 降级到 17 版本,但所有这些都不起作用。URL.parse
答: 暂无答案
评论