POST 데이터 전송1 [Java] POST 데이터 전송(application/x-www-form-urlencoded) 구현 1. application/json과 application/x-www-form-urlencoded application/json은 {key: value}의 형태로 전송되지만 application/x-www-form-urlencoded는 key=value&key=value의 형태로 전달된다. 즉 application/x-www-form-urlencoded는 보내는 데이터를 URL인코딩 이라고 부르는 방식으로 인코딩 후에 웹서버로 보내는 방식을 의미한다. public JSONObject httpPost(String url, HashMap param) { JSONObject jsonObj = null; try { // TLS/SSL 통신 무시 TrustManager[] trustAllcerts = new Tr.. 2022. 4. 26. 이전 1 다음