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

📄 operatecharge_or.java

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

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;
import VO.*;
import DAO.*;

public class OperateCharge_or 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");
		String c1=request.getParameter("C1");
		String c2=request.getParameter("C2");
		String c3=request.getParameter("C3");
		String c4=request.getParameter("C4");
		String c5=request.getParameter("C5");
		ChargeDAO oper=new ChargeDAO();
		if(c1!=null)
		{
			Charge ch1=new Charge();
			ch1.setCost_type("开户费");
			ch1.setOr_de(1);
			oper.updateOr_de(ch1);
		}
		if(c1==null)
		{
			Charge ch1=new Charge();
			ch1.setCost_type("开户费");
			ch1.setOr_de(0);
			oper.updateOr_de(ch1);
		}
		if(c2!=null)
		{
			Charge ch2=new Charge();
			ch2.setCost_type("漫游费");
			ch2.setOr_de(1);
			oper.updateOr_de(ch2);
		}
		if(c2==null)
		{
			Charge ch2=new Charge();
			ch2.setCost_type("漫游费");
			ch2.setOr_de(0);
			oper.updateOr_de(ch2);
		}
		if(c3!=null)
		{
			Charge ch3=new Charge();
			ch3.setCost_type("押金");
			ch3.setOr_de(1);
			oper.updateOr_de(ch3);
		}
		if(c3==null)
		{
			Charge ch3=new Charge();
			ch3.setCost_type("押金");
			ch3.setOr_de(0);
			oper.updateOr_de(ch3);
		}
		if(c4!=null)
		{
			Charge ch4=new Charge();
			ch4.setCost_type("入网费");
			ch4.setOr_de(1);
			oper.updateOr_de(ch4);
		}
		if(c4==null)
		{
			Charge ch4=new Charge();
			ch4.setCost_type("入网费");
			ch4.setOr_de(0);
			oper.updateOr_de(ch4);
		}
		if(c5!=null)
		{
			Charge ch5=new Charge();
			ch5.setCost_type("选号费");
			ch5.setOr_de(1);
			oper.updateOr_de(ch5);
		}
		if(c5==null)
		{
			Charge ch5=new Charge();
			ch5.setCost_type("选号费");
			ch5.setOr_de(0);
			oper.updateOr_de(ch5);
		}response.sendRedirect("/mobile/succ.jsp");
	}

}

⌨️ 快捷键说明

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