共计 876 个字符,预计需要花费 3 分钟才能阅读完成。
在 Java 中,可以使用 Servlet 或 Spring 框架来获取 POST 请求的请求体。
- 使用 Servlet:
- 在 Servlet 中重写 doPost 方法,通过 HttpServletRequest 对象的 getInputStream 方法获取请求体的输入流。
- 使用 IO 流的方式读取输入流中的数据。
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {BufferedReader reader = req.getReader();
StringBuilder requestBody = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {requestBody.append(line);
}
// requestBody.toString() 即为请求体内容}
- 使用 Spring 框架:
- 在 Controller 的方法参数中使用 @RequestBody 注解来接收请求体的内容。
@PostMapping("/api")
public String handlePostRequest(@RequestBody String requestBody) {// requestBody 即为请求体内容}
或者,使用对象来接收请求体的内容。
public class RequestBodyDto {
private String param1;
private int param2;
// getters and setters
}
@PostMapping("/api")
public String handlePostRequest(@RequestBody RequestBodyDto requestBodyDto) {// requestBodyDto 即为请求体内容的映射对象}
以上是两种常见的获取 POST 请求的请求体的方法。根据具体的应用场景和框架选择适合自己的方式。
丸趣 TV 网 – 提供最优质的资源集合!
正文完
发表至: Java
2023-12-20