1 2 3 4 5 6 7 8 9 10 11 12 13 14
| @WebServlet("/AutoRefresh") public class AutoRefresh extends HttpServlet{ @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.setContentType("text/html"); resp.setCharacterEncoding("utf-8"); resp.getWriter().write("5s后跳转到index.html"); resp.setHeader("Refresh", "1"); resp.setHeader("Refresh", "5;URL=Index.html"); } }
|