"이건 진짜 기본이야 기본 이것도 못하면 코딩한다고 말하지도 마"라고 말씀하셨다.... 선생님^,ㅜ 더 열심히 하겠습니다
public String download(){
try {
URL url = new URL("http://localhost:8000/user");
HttpURLConnection conn = (HttpURLConnection)url.openConnection();
BufferedReader br =
new BufferedReader(new InputStreamReader(conn.getInputStream()));
StringBuffer sb = new StringBuffer();
String input = null;
while((input = br.readLine()) != null){
sb.append(input);
}
// sb를 json을 자바오브젝트 파싱
return sb.toString();
// 그림을 그리기
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
'이건 알아야지's > 오늘 공부' 카테고리의 다른 글
[TIL] 의사코드(PseudoCode) 작성법 (1) | 2023.06.14 |
---|---|
[이클립스] 전체 검색 시 FileSearch를 기본으로 설정하기 (0) | 2022.12.20 |
CircleImageView 라이브러리 (0) | 2021.07.26 |
[개발환경 구축] lombok.jar 설치하기 (0) | 2021.06.06 |
[JAVA] 메모리 구조(static, stack, heap) (0) | 2021.05.17 |