안드로이드/Android HttpURLConnection Request Header 값 세팅 하기
안드로이드 서버 통신 사용시 Request Header 에 값을 전달해서 보내는 방법 입니다.
URL url = new URL("URL"); HttpURLConnection conn = (HttpURLConnection)url.openConnection(); conn.setRequestProperty("User-Agent", "test"); conn.setRequestProperty("Value1", "test"); conn.setRequestProperty("Value2", "test"); conn.setRequestProperty("Value3", "test"); conn.setRequestProperty("Value4", "test"); conn.setRequestProperty("Value5", "test");
setRequestProperty 메서드에 해당 Data값을 (Key, value) 형태로 추가해 주시면 됩니다.
'Android > NetWork' 카테고리의 다른 글
안드로이드/Android Encoding Decoding 사용법 ~! (Base64, URLEncoder, URLDecoder) (2) | 2012.06.26 |
---|---|
안드로이드/Android HttpURLConnection클래스로 POST 요청하기 (1) | 2012.06.25 |
안드로이드/Android HttpURLConnection 에서 GET / POST 방식 사용상의 주의 (0) | 2012.06.21 |
안드로이드/Android getResponseCode() 에러 날 경우 에러 메시지 보는방법 (0) | 2012.06.20 |
안드로이드/Android 서버 연동시 request body 셋팅 하기! (0) | 2012.06.19 |