반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- Django column 값 가져오기
- Django
- Spring
- Django 특정 값 가져오기
- Dependency
- table cell size
- DI
- Dependency Injection
- html cell size
- html cell
- html
- table tag
Archives
- Today
- Total
목록2024/03 (1)
emluy 개발 일기
[API] Socket과 HttpURLConnection 차이
[Socket과 HttpURLConnection 차이] 1. HttpURLConnection - HTTP 프로토콜 사용해서 서버와 통신 - URL 기반으로 HTTP 메소드 (GET, POST, PUT, DELETE 등)를 사용하여 요청을 처리 - 헤더 관리, 쿠키 처리, 리디렉션 처리 등 HTTP에 특화된 기능을 제공 URL url = new URL("http://example.com/api/data"); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setRequestMethod("GET"); // HTTP 헤더 설정, 쿠키 처리 등 InputStream in = conn.getInputStream(); 2. Socket..
웹 개발/Spring
2024. 3. 31. 18:39