Cannot forward ... response ... committed

前端之家收集整理的这篇文章主要介绍了Cannot forward ... response ... committed前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
try {
						PrintWriter out = response.getWriter();
						//输出
						out.print("用户名或密码错误!");
						//out.flush();
						out.close();
						
					} catch (IOException e) {
						e.printStackTrace();
					}

改了以后就是这样的



try {

PrintWriter out = response.getWriter();//输出

out.print("用户名或密码错误!");

//out.flush();

out.close();return;//就是这行


} catch (IOException e)

{

e.printStackTrace();

}

原文链接:https://www.f2er.com/ajax/165780.html

猜你在找的Ajax相关文章