android Failed to connect to localhost
-
[안드로이드] Failed to connect to localhost/127.0.0.1:8080안드로이드(java)/에러 관련 2020. 5. 17. 16:51
Failed to connect to localhost/127.0.0.1:8080 springboot 로 간단한 Rest API 서버를 연습삼아 만들었습니다. 그리고 API 를 만든김에 안드로이드에서 retrofit 으로 API 정보를 가져오려고 하였습니다. 다 완성한 이후에 에뮬레이터로 정보를 가져오려고 하였으나 위와 같은 에러가 출력되었습니다. retrofit에서 주소는 아래와 같이 넣었습니다. 1 2 3 4 Retrofit retrofit = new Retrofit.Builder() .baseUrl("http://localhost:8080/") .addConverterFactory(GsonConverterFactory.create()) .build(); Colored by Color Scripter..