直接定义跳转位置即可。
public class CFRT02Servlet extends HttpServlet {
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws IOException, ServletException {
//此处添加用户密码信息判断代码,之后走下面的方法即可调转到想要的界面
this.getServletConfig().getServletContext().getRequestDispatcher("/CFRT02.jsp")
.forward(request, response);
}
}
如果你只是想发送一个servlet请求,用java.net的URL及相关的类
如果是想打开JSP页面,那需要调用本地的浏览器。
你想要的是第二种?
public class Main {
public static void main(String[] args) throws Exception {
Runtime run = Runtime.getRuntime();
run.exec("\"C:\\Program Files\\Internet Explorer\\iexplore\" www.sohu.com ");
}
}
这样可以打开一个浏览器。
1.在servlet里面:
request.getRequestDispatcher("../ok.jsp").forward(request, response);
2.struts1里面:
return mapping.findForward("ok");
struts-config.xml利配置
你的意思是:不是在浏览器中发送请求,而是普通代码访问HTTP服务器的内容,然后用浏览器展示出来是吗?
不是用浏览器发送HTTP请求命令就不会了吗?
1、百度:什么是浏览器?
2、了解HTTP协议。