반응형
java.net.MalformedURLException: no protocol 오류 해결
Java로 API를 호출하거나 URI를 사용하여 호출할때 이런 에러가 발생할 수 있는데,
단순하게 http:// 가 빠져있기 때문에 이런 오류가 발생한다.
호출하려는 URI 앞에 http:// 를 붙여주면 오류가 해결 된다.
api.get("api.openweathermap.org/");
api.get("http://api.openweathermap.org/");
URI (x)
http:// + URI (O)
반응형
'Java > 오류해결' 카테고리의 다른 글
[오류해결] No goals have been specified for this build (Maven) (3) | 2020.09.03 |
---|---|
[오류해결] *.jar에 기본 Manifest 속성이 없습니다. (0) | 2020.05.22 |
[오류해결] java.lang.OutOfMemoryError: unable to create new native thread (0) | 2020.05.14 |