바닐라 자바에서는 POST 요청을 쉽게 보낼 수 있습니다. 을 시작으로 URL
, 우리는 t가로 변환이 필요 URLConnection
사용 url.openConnection();
. 그런 다음에로 캐스팅해야 HttpURLConnection
하므로 setRequestMethod()
메소드에 액세스하여 메소드를 설정할 수 있습니다 . 마지막으로 연결을 통해 데이터를 보내겠다고 말합니다.
URL url = new URL("https://www.example.com/login");
URLConnection con = url.openConnection();
HttpURLConnection http = (HttpURLConnection)con;
http.setRequestMethod("POST"); // PUT is another valid option
http.setDoOutput(true);
그런 다음 보낼 내용을 명시해야합니다.
간단한 양식 보내기
http 양식에서 오는 일반 POST는 형식이 잘 정의되어 있습니다. 입력을 다음 형식으로 변환해야합니다.
Map<String,String> arguments = new HashMap<>();
arguments.put("username", "root");
arguments.put("password", "sjh76HSn!"); // This is a fake password obviously
StringJoiner sj = new StringJoiner("&");
for(Map.Entry<String,String> entry : arguments.entrySet())
sj.add(URLEncoder.encode(entry.getKey(), "UTF-8") + "="
+ URLEncoder.encode(entry.getValue(), "UTF-8"));
byte[] out = sj.toString().getBytes(StandardCharsets.UTF_8);
int length = out.length;
그런 다음 양식 내용을 http 요청에 적절한 헤더로 첨부하여 보낼 수 있습니다.
http.setFixedLengthStreamingMode(length);
http.setRequestProperty("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
http.connect();
try(OutputStream os = http.getOutputStream()) {
os.write(out);
}
// Do something with http.getInputStream()
JSON 보내기
자바를 사용하여 json을 보낼 수도 있습니다.
byte[] out = "{\"username\":\"root\",\"password\":\"password\"}" .getBytes(StandardCharsets.UTF_8);
int length = out.length;
http.setFixedLengthStreamingMode(length);
http.setRequestProperty("Content-Type", "application/json; charset=UTF-8");
http.connect();
try(OutputStream os = http.getOutputStream()) {
os.write(out);
}
// Do something with http.getInputStream()
서버마다 json에 대해 다른 콘텐츠 유형을 허용 합니다. 이 질문을 참조하십시오 .
자바 포스트로 파일 보내기
형식이 복잡하므로 파일 전송이 처리하기가 더 어려울 수 있습니다. 또한 파일을 메모리에 완전히 버퍼링하고 싶지 않기 때문에 파일을 문자열로 보내기위한 지원을 추가 할 것입니다.
이를 위해 몇 가지 도우미 메서드를 정의합니다.
private void sendFile(OutputStream out, String name, InputStream in, String fileName) {
String o = "Content-Disposition: form-data; name=\"" + URLEncoder.encode(name,"UTF-8")
+ "\"; filename=\"" + URLEncoder.encode(filename,"UTF-8") + "\"\r\n\r\n";
out.write(o.getBytes(StandardCharsets.UTF_8));
byte[] buffer = new byte[2048];
for (int n = 0; n >= 0; n = in.read(buffer))
out.write(buffer, 0, n);
out.write("\r\n".getBytes(StandardCharsets.UTF_8));
}
private void sendField(OutputStream out, String name, String field) {
String o = "Content-Disposition: form-data; name=\""
+ URLEncoder.encode(name,"UTF-8") + "\"\r\n\r\n";
out.write(o.getBytes(StandardCharsets.UTF_8));
out.write(URLEncoder.encode(field,"UTF-8").getBytes(StandardCharsets.UTF_8));
out.write("\r\n".getBytes(StandardCharsets.UTF_8));
}
그런 다음이 메소드를 사용하여 다음과 같이 멀티 파트 게시 요청을 작성할 수 있습니다.
String boundary = UUID.randomUUID().toString();
byte[] boundaryBytes =
("--" + boundary + "\r\n").getBytes(StandardCharsets.UTF_8);
byte[] finishBoundaryBytes =
("--" + boundary + "--").getBytes(StandardCharsets.UTF_8);
http.setRequestProperty("Content-Type",
"multipart/form-data; charset=UTF-8; boundary=" + boundary);
// Enable streaming mode with default settings
http.setChunkedStreamingMode(0);
// Send our fields:
try(OutputStream out = http.getOutputStream()) {
// Send our header (thx Algoman)
out.write(boundaryBytes);
// Send our first field
sendField(out, "username", "root");
// Send a seperator
out.write(boundaryBytes);
// Send our second field
sendField(out, "password", "toor");
// Send another seperator
out.write(boundaryBytes);
// Send our file
try(InputStream file = new FileInputStream("test.txt")) {
sendFile(out, "identification", file, "text.txt");
}
// Finish the request
out.write(finishBoundaryBytes);
}
// Do something with http.getInputStream()
PostMethod
실제로 지금이라고 불리는 것 같다HttpPost
따라 stackoverflow.com/a/9242394/1338936 그냥 :)했던 것처럼이 대답을 찾는 사람을 위해 -