0
Java의 URLConnection을 사용하면 http 요청을 구성 할 수 있습니다. 다음과 같은 간단한 POST 요청을 작성한 후 :보내기 전에 URLConnection 요청을 인쇄하십시오.
URLConnection con = url.openConnection();
con.addRequestProperty("User-agent", "Mozilla");
con.setDoOutput(true);
String data = "text to send";
OutputStreamWriter wr = new OutputStreamWriter(con.getOutputStream());
wr.write(data);
전송하기 전에이 요청의 모양을 확인할 방법이 있습니까?