首页>代码>jquery实现java web之汉字图片验证码实例>/yzm/src/xwcms/net/service/ResultServlet.java
package xwcms.net.service;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class ResultServlet extends HttpServlet {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	/**
	 * The doGet method of the servlet. <br>
	 * 
	 * This method is called when a form has its tag value method equals to get.
	 * 
	 * @param request
	 *            the request send by the client to the server
	 * @param response
	 *            the response send by the server to the client
	 * @throws ServletException
	 *             if an error occurred
	 * @throws IOException
	 *             if an error occurred
	 */
	public void doGet(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {

		doPost(request, response);
	}

	/**
	 * The doPost method of the servlet. <br>
	 * 
	 * This method is called when a form has its tag value method equals to
	 * post.
	 * 
	 * @param request
	 *            the request send by the client to the server
	 * @param response
	 *            the response send by the server to the client
	 * @throws ServletException
	 *             if an error occurred
	 * @throws IOException
	 *             if an error occurred
	 */
	public void doPost(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {

		response.setContentType("text/html;charset=utf-8");
		String validateC = (String) request.getSession().getAttribute("checkcode");
		String veryCode = request.getParameter("c");
		PrintWriter out = response.getWriter();
		if (veryCode == null || "".equals(veryCode)) {
			out.println("请输入验证码!");
		} else {
			if (validateC.equals(veryCode)) {
				out.println(1);
			} else {
				out.println("验证码输入错误!");
			}
		}
		out.flush();
		out.close();
	}

}
最近下载更多
磊哥哥哥哥  LV13 2023年4月6日
xiaojin2  LV2 2021年3月3日
a850738958  LV9 2020年12月11日
19980918  LV1 2020年1月11日
C544350851  LV26 2019年9月30日
yyyyyyyyyyyyyyyyyyy  LV16 2019年7月3日
kelaishite  LV2 2019年6月24日
liuliuliuliuliu  LV2 2019年5月21日
xiong517461801  LV2 2019年4月18日
8战魂5无双8  LV43 2019年2月24日
最近浏览更多
柳咪华沙  LV7 6月29日
张张张飞  LV1 2023年11月28日
luandjustin 2023年7月3日
暂无贡献等级
936684178  LV2 2023年6月27日
qazws123  LV1 2023年6月7日
磊哥哥哥哥  LV13 2023年4月6日
与哲rhcy  LV6 2022年12月4日
1048618148  LV5 2022年10月19日
温柔的小白  LV8 2022年8月1日
charleswang  LV7 2022年6月15日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友