Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
设备向tomcat服务器发送HTTP PUT请求。服务器响应'200(OK)状态码表示成功。但我不知道如何使用 tomcat 接收和响应。非常感谢您的帮助。
您需要通过 ServletRequest.getInputStream() 或 ServletRequest.getReader() 读取响应正文。响应码无需设置,默认为200,除非出现错误。您可能想要发送响应正文。请参阅 Tomcat 的 DefaultServlet 了解它如何实现 PUT(请注意,出于安全原因,默认情况下它是禁用的)。