⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 newcustomer.java

📁 基于jsp的固定资产管理系统,自己做的
💻 JAVA
字号:
package servlet;

import java.io.IOException;
import java.sql.Date;

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

import VO.CustomerInfo;

import DAO.CustomerInfoDAO;

public class NewCustomer extends HttpServlet {

	/**
	 * 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 {

		response.setContentType("text/html");
		this.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");
		CustomerInfoDAO oper=new CustomerInfoDAO();
		CustomerInfo user=new CustomerInfo();
		String ID=oper.getLastID();
		String type=request.getParameter("type");
		String num=request.getParameter("num");
		String name=request.getParameter("name");
		String sextemp=request.getParameter("R1");
		String sex=null;
		if(sextemp.equals("1"))
		{
			sex="男";
		}
		else
		{
			sex="女";
		}
		String birthtemp=request.getParameter("birth");
		Date birth=Date.valueOf(birthtemp);
		String addr=request.getParameter("addr");
		user.setID(ID);
		user.setDOC_TYPE(type);
		user.setDOC_NUM(num);
		user.setCUS_ADDR(addr);
		user.setCUS_BIRTH(birth);
		user.setCUS_NAME(name);
		user.setCUS_SEX(sex);
		int k=oper.addUser(user);
		if(k>0)
		{
			response.sendRedirect("/mobile/newUser.jsp?ID="+ID);
		}
		else
		{
			response.sendRedirect("/mobile/newCustomer_error.jsp?");
		}

		
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -