jsp mysql火车票预定系统_jsp+mysql开发的火车票网上购票系统

package dp.admin.svlt;

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 javax.servlet.http.HttpSession;

import dp.utils.DbConn;

import net.sf.json.JSONObject;

public class Add extends HttpServlet {

/**

* Constructor of the object.

*/

public Add() {

super();

}

/**

* Destruction of the servlet.

*/

public void destroy() {

super.destroy(); // Just puts "destroy" string in log

// Put your code here

}

/**

* The doGet method of the servlet.

*

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

this.doPost(request, response);

}

/**

* The doPost method of the servlet.

*

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

//设置传输数据编码方式

request.setCharacterEncoding("utf-8");

response.setCharacterEncoding("utf-8");

response.setContentType("text/html");

HttpSession session=request.getSession();

//获取当前登录用户信息

Object utype=session.getAttribute("utype");

Object userid=session.getAttribute("userid");

//创建json对象

JSONObject json=new JSONObject();

if(utype==null||userid==null){

json.put("msg", "请重新登陆。");

return;

}

//获取前台数据tname

String tname=request.getParameter("tname");

//创建数据库操作对象

DbConn db=new DbConn();

//管理员信息添加

if("admin".equals(tname)){

String un=request.getParameter("uname");

String up=request.getParameter("upassword");

boolean bl=db.checkTrue("select id from userinfo where uname='"+un+"'");

if(bl){

json.put("msg", "账号已存在");

}else{

bl=db.insort("insert into userinfo(uname,upassword) values('"+un+"','"+up+"')");

if(!bl){

json.put("msg", "添加成功。");

}else{

json.put("msg", "添加失败");

}

}

}

//顾客信息添加

if("cusinfo".equals(tname)){

String un=request.getParameter("cidcard");

String up=request.getParameter("cpassword");

String um=request.getParameter("cname");

boolean bl=db.checkTrue("select id from cusinfo where cidcard='"+un+"'");

if(bl){

json.put("msg", "身份证已注册");

}else{

bl=db.insort("insert into cusinfo(cidcard,cpassword,cname) values('"+un+"','"+up+"','"+um+"')");

if(!bl){

json.put("msg", "添加成功。");

}else{

json.put("msg", "添加失败");

}

}

}

//火车信息添加

if("traininfo".equals(tname)){

String tnames=request.getParameter("tnames");

String cz=request.getParameter("cz");

String znums=request.getParameter("znums");

String xcnums=request.getParameter("xcnums");

String traintype=request.getParameter("traintype");

boolean bl=db.checkTrue("select id from traininfo where tname='"+tnames+"'");

if(bl){

json.put("msg", "车次已存在");

}else{

bl=db.insort("insert into traininfo(tname,cz,znums,xcnums,traintype) values('"+tnames+"','"+cz+"',"+znums+","+xcnums+",'"+traintype+"')");

if(!bl){

json.put("msg", "添加成功。");

}else{

json.put("msg", "添加失败");

}

}

}

//站点信息添加

if("zhandian".equals(tname)){

String zdname=request.getParameter("zdname");

boolean bl=db.checkTrue("select id from zhandian where zdname='"+zdname+"'");

if(bl){

json.put("msg", "站点名称已存在");

}else{

bl=db.insort("insert into zhandian(zdname) values('"+zdname+"')");

if(!bl){

json.put("msg", "添加成功。");

}else{

json.put("msg", "添加失败");

}

}

}

//线路信息添加

if("xianlu".equals(tname)){

String tid=request.getParameter("tid");

String zdid=request.getParameter("zdid");

String xh=request.getParameter("xh");

DbConn db2=new DbConn();

if(db.checkTrue("select id from xianlu where tid="+tid+" and zdid="+zdid)){

json.put("msg", "该线路已有该站点");

}else if(db2.checkTrue("select id from xianlu where tid="+tid+" and xh="+xh)){

json.put("msg", "站点序号已存在");

}else{

boolean bl=db.insort("insert into xianlu(xh,tid,zdid) values("+xh+","+tid+","+zdid+")");

if(!bl){

json.put("msg", "添加成功。");

}else{

json.put("msg", "添加失败");

}

}

}

//车票信息添加

//data:{tname:'piao',"szdid":szdid,"stime":stime,"ezdid":ezdid,"pval":pval,"ptype":ptype,

//"cxzh":cxzh,"yxsj":yxsj,"tid":tid,idi:ids},

if("piao".equals(tname)){

String tid=request.getParameter("tid");

String szdid=request.getParameter("szdid");

String ezdid=request.getParameter("ezdid");

String stime=request.getParameter("stime");

String pval=request.getParameter("pval");

String ptype=request.getParameter("ptype");

String cxzh=request.getParameter("cxzh");

String yxsj=request.getParameter("yxsj");

boolean bl=db.insort("insert into piao(szdid,ezdid,tid,stime,pval,ptype,cxzh,yxsj) values("+szdid+","+ezdid+","+tid+",'"+stime+"',"+pval+",'"+ptype+"','"+cxzh+"','"+yxsj+"')");

if(!bl){

json.put("msg", "添加成功。");

}else{

json.put("msg", "添加失败");

}

}

PrintWriter out=response.getWriter();

out.print(json.toString());

out.flush();

out.close();

}

/**

* Initialization of the servlet.

*

* @throws ServletException if an error occurs

*/

public void init() throws ServletException {

// Put your code here

}

}

管理员模块已更新 使用说明 1 电脑上装JDK 2 电脑上装mysql数据库 3 在dos下打开mysql后,把mysql.txt里的代码(包括insert代码)复制到dos下运行,记得最后再按一下回车键,让最后一行也运行。 4 在eclipse或myeclipse下新建java项目(注意不是jsp项目)后,复制src文件夹到替换项目里的src。然后在复制train.pro,右击项目名粘贴(即把train.pro 加到项目 目录里) 5 把mysql-connector-java-5.1.13-bin.jar 添加到项目里。右键项目,点击Build Path 后再点击add External Archives 后找到mysql-connector-java-5.1.13-bin.jar文件打开即可。 6 在eclipse里打开wed包下MySqlH.java 设置mysql root用户的密码,String password="mysql"; 我的密码是mysql,这里改成你自己的密码。 7 运行client包下的Administrator.java ,若没有错如则OK。 8 运行后点击工具条里的‘工具’,后再点击‘生成所有列车表’,若成功,此时可看见列车表里增加了很多数据。可能有点慢,稍等一会。 9 若8 成功,则点击工具条里的‘工具’,后再点击‘生成所有车票表’,若成功,此时可看见车票表里增加了很多数据。可能有点慢,稍等一会。 关于工具条理的‘生成所有列车表’ ‘生成所有车票表’ "生成列车表" "生成车票表" "设置天数" 的介绍 1 ‘生成所有列车表’ 是根据车次表和车站表的全部数据自动生成 列车表 里的数据, 仅限于第一次时使用。 2 ‘生成所有车票表’ 是根据 列车表 里的全部数据自动生成 车票表 里的数据, 仅限于第一次时使用。 3 "生成列车表" 是根据你输入的某一列车次(必须是车次表里的车次和车站表里有与之相关的数据时才能使用)自动生成 列车表 里的数据 4 "生成车票表" 是根据你输入的某一ID(必须是列车表里的ID)自动生成 车票表 里的数据 5 "设置天数" 是设置能够预订和销售的最多天数,默认是3 天,即能预订和销售3天内的车票 注意: 1 订票记录表,销售记录表,退票记录表里的时间是系统自动生成,在任何情况下都不需填写 也不能修改 2 在管理员模块里添加,删除和修改后需更新一下才能显示,只需点一下别的表,在点刚修改的表即可,数据完全正确 3 退票员和销售员登录时分别查询对应表的记录,因此需要在管理员模块里增加相应记录后才能登录 4 此系统暂时已知还有多个缺陷,如如退票是可一张票可退多次,一个订票id可买多张车票。由于时间因素,就不在修补了。 5 train.pro 是个配置文件,可用记事本打开,尽量在train下的Main_Config.java里修改其配置信息
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值