我正在尝试发回用一些 HTML 编码的 HTTP。我收到“HttpServletResponse 类型的方法 sendStatus(int, String) 未定义”错误。我也尝试只使用代码。如果我改用 sendError(),则不会发送 HTML。
<%@page contentType="text/html; charset=utf-8" %>
<%@ page isErrorPage = "true"%>
<%response.sendStatus(500, "TEST 500 ERROR WITH HTML PAGE");%>
<html>
<body>
<h1>
Test HTTP Error: 500 ERROR with HTML page
</h1>
</body>
</html>
我越来越:
ERROR_500_subjectdoc_htmlheader_error_realhtmlerrorpage.jsp:3:12: The method sendStatus(int, String) is undefined for the type HttpServletResponse
<%response.sendStatus(500, "TEST 500 ERROR WITH HTML PAGE");%>