URL url; HttpURLConnection conn = null; BufferedReader reader = null; try { url = new URL("url 입력"); // 호출할 url 입력 conn = (HttpURLConnection) url.openConnection(); // 커넥션 오픈 if (conn != null) { // GET, POST 등 conn.setRequestMethod("POST"); // application/x-www-form-urlencoded, application/json 등 conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); // 응답받을 데이터가 있는 경우 true..