Я хочу сделать запрос GET на веб-сайт, но я получаю URI can't be null.
String url = "https://valid_url.com";
HttpURLConnection connection = (HttpURLConnection)(new URL(url)).openConnection();
connection.setRequestMethod("GET");
connection.connect(); //-> java.lang.IllegalArgumentException: URI can't be null.
Почему я получаю URI can't be null
?
П.С .: Я использую jdk10