博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hello2
阅读量:4935 次
发布时间:2019-06-11

本文共 413 字,大约阅读时间需要 1 分钟。

String username = request.getParameter("username");//获取参数值

if (username != null && username.length() > 0) {
RequestDispatcher dispatcher =
getServletContext().getRequestDispatcher("/response");
//获取url为/response的servlet作为转发的对象
if (dispatcher != null) {
dispatcher.include(request, response);
//请求转发到response这个url对应的servlet
}
}
out.println("</body></html>");
}
}

 

转载于:https://www.cnblogs.com/zyhello/p/10576908.html

你可能感兴趣的文章