1、页面标签
<a href="index.html">
2、前端js
(推荐视频教程:java视频教程)
window.location.href = "index.html"
3、页面转发
前端实际只发送一次请求,后端两次请求共用request和response对象。
request.getServletContext().getRequestDispatcher("index.html").forward(request, response);
4、页面重定向
告诉前端重新发一次请求,两次请求是分开的。
response.sendRedirect("index.html");
相关文章教程分享:java入门教程
Atas ialah kandungan terperinci java如何实现页面跳转. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!