STUDY_NOTE/java

HttpURLConnection 사용시 참고

kh201 2021. 3. 12. 09:37

mytalkhome.tistory.com/855

 

HttpURLConnection 사용시 참고사항

// HttpURLConnection 객체 생성. HttpURLConnection conn = null ; // URL 연결 (웹페이지 URL 연결.) conn = (HttpURLConnection)url.openConnection(); // TimeOut 시간 (서버 접속시 연결 시간) conn.setConne..

mytalkhome.tistory.com