我有一个关于如何允许我的 jsp 页面向服务器发出发布命令的问题,并且仍然让浏览器停止发布页面的重定向。
以下是代码片段:
发帖的代码(这是在一个jsp文件中):
HttpClient client = new DefaultHttpClient();
client.getParams().setParameter("SUBMITTED", "submitted");
client.getParams().setParameter("xxxxxxxx", purchaser.getemail());
client.getParams().setParameter("xxxxxxxx", purchaser.getsuject());
HttpPost method = new HttpPost(url+"process.jsp");
client.execute(method);
这是 process.jsp 的一个片段
if (person.getStatus() == person.ACTIVE)
response.sendRedirect("Account.jsp);
else if (person.getStatus() == person.ERROR)
response.sendRedirect("Error.jsp);
我希望浏览器能够从 process.jsp 重定向到 fallow/goto。有谁知道可以帮助我的教程,或者我是否以错误的方式解决了这个问题。