如何使用 JSP 向浏览器发送错误代码?
以下示例展示如何向客户端浏览器发送 407 错误代码。发送后,浏览器将显示“需要身份验证!!!”消息。
<html> <head> <title>Setting HTTP Status Code</title> </head> <body> <% // Set error code and reason. response.sendError(407, "Need authentication!!!" ); %> </body> </html>
你将收到以下输出 −
HTTP Status 407 - Need authentication!!!
type Status report
message Need authentication!!!
description The client must first authenticate itself with the proxy (Need authentication!!!).
Apache Tomcat/5.5.29
广告