Java by API/javax.servlet/javax.servlet.error

Материал из Java эксперт
Перейти к: навигация, поиск

javax.servlet.error.exception_type

   <source lang="java">

import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class ErrorDisplay extends HttpServlet {

 public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException,
     IOException {
   res.setContentType("text/html");
   PrintWriter out = res.getWriter();
   String code = null, message = null, type = null;
   Object codeObj, messageObj, typeObj;
   // Retrieve the three possible error attributes, some may be null
   codeObj = req.getAttribute("javax.servlet.error.status_code");
   messageObj = req.getAttribute("javax.servlet.error.message");
   typeObj = req.getAttribute("javax.servlet.error.exception_type");
   // Convert the attributes to string values
   if (codeObj != null)
     code = codeObj.toString();
   if (messageObj != null)
     message = messageObj.toString();
   if (typeObj != null)
     type = typeObj.toString();
   // The error reason is either the status code or exception type
   String reason = (code != null ? code : type);
   out.println("<HTML>");
   out.println("<HEAD><TITLE>" + reason + ": " + message + "</TITLE></HEAD>");
   out.println("<BODY>");
out.println("

" + reason + "

"); out.println("

" + message + "

"); out.println("
");
   out.println("Error accessing " + req.getRequestURI() + "");
   out.println("</BODY></HTML>");
 }

}

      </source>
   
  
 
  



javax.servlet.error.message

   <source lang="java">

import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class ErrorDisplay extends HttpServlet {

 public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException,
     IOException {
   res.setContentType("text/html");
   PrintWriter out = res.getWriter();
   String code = null, message = null, type = null;
   Object codeObj, messageObj, typeObj;
   // Retrieve the three possible error attributes, some may be null
   codeObj = req.getAttribute("javax.servlet.error.status_code");
   messageObj = req.getAttribute("javax.servlet.error.message");
   typeObj = req.getAttribute("javax.servlet.error.exception_type");
   // Convert the attributes to string values
   if (codeObj != null)
     code = codeObj.toString();
   if (messageObj != null)
     message = messageObj.toString();
   if (typeObj != null)
     type = typeObj.toString();
   // The error reason is either the status code or exception type
   String reason = (code != null ? code : type);
   out.println("<HTML>");
   out.println("<HEAD><TITLE>" + reason + ": " + message + "</TITLE></HEAD>");
   out.println("<BODY>");
out.println("

" + reason + "

"); out.println("

" + message + "

"); out.println("
");
   out.println("Error accessing " + req.getRequestURI() + "");
   out.println("</BODY></HTML>");
 }

}

      </source>
   
  
 
  



javax.servlet.error.status_code

   <source lang="java">

import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class ErrorDisplay extends HttpServlet {

 public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException,
     IOException {
   res.setContentType("text/html");
   PrintWriter out = res.getWriter();
   String code = null, message = null, type = null;
   Object codeObj, messageObj, typeObj;
   // Retrieve the three possible error attributes, some may be null
   codeObj = req.getAttribute("javax.servlet.error.status_code");
   messageObj = req.getAttribute("javax.servlet.error.message");
   typeObj = req.getAttribute("javax.servlet.error.exception_type");
   // Convert the attributes to string values
   if (codeObj != null)
     code = codeObj.toString();
   if (messageObj != null)
     message = messageObj.toString();
   if (typeObj != null)
     type = typeObj.toString();
   // The error reason is either the status code or exception type
   String reason = (code != null ? code : type);
   out.println("<HTML>");
   out.println("<HEAD><TITLE>" + reason + ": " + message + "</TITLE></HEAD>");
   out.println("<BODY>");
out.println("

" + reason + "

"); out.println("

" + message + "

"); out.println("
");
   out.println("Error accessing " + req.getRequestURI() + "");
   out.println("</BODY></HTML>");
 }

}

      </source>