基于javaweb+mysql的jsp+servlet私人牙科诊所病历管理系统医院挂号(java+jsp+css+javascript+mysql)

基于javaweb+mysql的jsp+servlet私人牙科诊所病历管理系统医院挂号(java+jsp+css+javascript+mysql)

私信源码获取及调试交流

运行环境

Java≥8、MySQL≥5.7、Tomcat≥8

开发工具

eclipse/idea/myeclipse/sts等均可配置运行

适用

课程设计,大作业,毕业设计,项目练习,学习演示等

功能说明


前台病人:

user1   123456

user2   123456

后台:

管理员账号/密码:admin/123456

挂号人员账号/密码:gh/123456

医生人员账号/密码:doctor/123456

收费人员账号/密码:sf/123456

药房人员账号/密码:yf/123456

预约挂号的操作流程:

1 前台user1:预约挂号

2 后台gh:受理

3 后台doctor:问诊

4 后台sf:收费

5 后台yf:确认取药

6 前台user1:查询病历(就诊信息)

基于javaweb的JSP+Servlet私人牙科诊所病历管理系统医院挂号(java+jsp+css+javascript+mysql)

项目介绍

本系统分为前后台,包括管理员、病人、挂号人员、收费人员、药房人员、医生人员等角色,其中前台只能由病人角色登录,其它角色可通过后台登录; 管理员角色包含以下功能: 登录页面,增加公告,公告管理,留言管理,增加用户,用户管理,增加科室,科室管理,药品管理,收费统计,挂号统计等功能。

病人角色包含以下功能: 注册账号,用户登录,用户登录后首页,预约挂号,个人信息修改,提交留言等功能。

环境需要

1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。 2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA; 3.tomcat环境:Tomcat 7.x,8.x,9.x版本均可 4.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS; 5.数据库:MySql 5.7版本; 6.是否Maven项目:否;

技术栈

1.后端技术:Servlet 2.前端技术:JSP+CSS+JavaScript

使用说明

  1. 使用Navicat或者其它工具,在mysql中创建对应名称的数据库,并导入项目的sql文件; 2. 使用IDEA/Eclipse/MyEclipse导入项目,Eclipse/MyEclipse导入时,若为maven项目请选择maven;若为maven项目,导入成功后请执行maven clean;maven install命令,然后运行; 3. 将项目中dbconnection.properties配置文件中的数据库配置改为自己的配置; 将项目中src/dao/CommDAO.java中第71行的数据库配置用户名密码改为自己的配置; 4. 运行项目,输入http://localhost:8080/srykzsblmis/ 登录 注:Tomcat中配置路径必须为srykzsblmis 管理员账号/密码:admin/123 病人账号/密码: xm/123 挂号人员账号/密码:gh/123 收费人员账号/密码:sf/123 药房人员账号/密码:yf/123 医生人员账号/密码:doctor1/123
            String delstatus = "0";
            String oper = "网上预约";
            String savetime = Info.getDateStr();
            dao.commOper("update yy set ghno ='" + ghno + "' where id=" + id);
            dao.commOper("insert into ghinfo (ghno,tname,sex,age,idcard,tel,addr,ghdept,price,status,delstatus,oper,savetime) " +
                    " values('" + ghno + "','" + tname + "','" + sex + "','" + age + "','" + idcard + "','" + tel + "','" + addr + "','" + ghdept + "','" + price + "','" + status + "','" + delstatus + "','" + oper + "','" + savetime + "')  ");
            request.setAttribute("suc", "");
            go("admin/yy.jsp", request, response);
        }
        //前台退出
        if (ac.equals("frontexit")) {
            session.removeAttribute("user");
            go("index.jsp", request, response);
        }

        //添加公告
        if (ac.equals("noticeadd")) {
            String title = request.getParameter("title");
            String note = request.getParameter("note");
            String savetime = Info.getDateStr();
            String sql = "insert into notice (title,note,savetime) values('" + title + "','" + note + "','" + savetime + "')";
            dao.commOper(sql);
            request.setAttribute("suc", "");
            go("/admin/noticeadd.jsp", request, response);
        }
        //修改公告
        if (ac.equals("noticeedit")) {
            String id = request.getParameter("id");
            String title = request.getParameter("title");
            String note = request.getParameter("note");
            String sql = "update notice set title='" + title + "',note='" + note + "' where id= " + id;
            dao.commOper(sql);
            request.setAttribute("suc", "");
            go("/admin/noticeadd.jsp", request, response);
        }

        //添加留言
        if (ac.equals("chatadd")) {
            String msg = request.getParameter("msg");
            String hfmsg = "";
            String savetime = Info.getDateStr();
            String uid = user.get("id").toString();
            String sql = "insert into chat (msg,hfmsg,savetime,uid) values('" + msg + "','" + hfmsg + "','" + savetime + "','" + uid + "')";
            dao.commOper(sql);
            request.setAttribute("suc", "");
            go("chat.jsp", request, response);
        }
        //回复留言
        if (ac.equals("chathf")) {
            String id = request.getParameter("id");
            String hfmsg = request.getParameter("hfmsg");
            String sql = "update chat set hfmsg='" + hfmsg + "' where id= " + id;

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        this.doPost(request, response);
    }

    public void go(String url, HttpServletRequest request, HttpServletResponse response) {
        try {
            request.getRequestDispatcher(url).forward(request, response);
        } catch (ServletException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public void gor(String url, HttpServletRequest request, HttpServletResponse response) {
        try {
            response.sendRedirect(url);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
        HttpSession session = request.getSession();
        HashMap admin = (HashMap) session.getAttribute("admin");
        HashMap user = (HashMap) session.getAttribute("user");
        String ac = request.getParameter("ac");
        if (ac == null) ac = "";
        CommDAO dao = new CommDAO();
        String date = Info.getDateStr();
        String today = date.substring(0, 10);
        String tomonth = date.substring(0, 7);

        //登录
        if (ac.equals("login")) {
            String utype = request.getParameter("utype");
            String username = request.getParameter("uname");
            String password = request.getParameter("upass");
            String sql = "select * from sysuser where uname='" + username + "' and upass='" + password + "' ";
            List<HashMap> userlist = dao.select(sql);
            if (userlist.size() != 1) {
                request.setAttribute("error", "");
                go("/admin/login.jsp", request, response);
            } else {
                request.getSession().setAttribute("admin", userlist.get(0));
		    try {
				       BufferedInputStream bis = null;
					   BufferedOutputStream bos = null;
					   OutputStream fos = null;
					  // File f = new File(request.getRealPath("/upfile/")+"/"+filename);
					   //System.out.println(f);
					   bis = new BufferedInputStream((InputStream)new FileInputStream(request.getRealPath("/upfile/")+"/"+filename));
					    fos = response.getOutputStream();
					    bos = new BufferedOutputStream(fos);

					    int bytesRead = 0;
					    byte[] buffer = new byte[5 * 1024];
					    while ((bytesRead = bis.read(buffer)) != -1) {
					     bos.write(buffer, 0, bytesRead);
					    }
					    bos.close();
					    bis.close();
					    fos.close();
				
		               //new Info().delPic(request.getRealPath("/upfile/")+"/", filename);
		     } catch (Exception e) {
				e.printStackTrace();
			}finally{
			}
	}

	/**
	 * Initialization of the servlet. <br>
	 *
	 * @throws ServletException if an error occurs
	 */
	public void init() throws ServletException {
		// Put your code here
	}

}

public class SetChar extends HttpServlet implements Filter {
	private FilterConfig filterConfig;

	// Handle the passed-in FilterConfig
				} catch (UnsupportedEncodingException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
		      }
		 response.setContentType("text/plain");
		 response.setHeader("Location",filename);
		 response.reset();
		 response.setHeader("Cache-Control", "max-age=0" );
		 response.setHeader("Content-Disposition", "attachment; filename=" + filename);

		    try {
				       BufferedInputStream bis = null;
					   BufferedOutputStream bos = null;
					   OutputStream fos = null;
					  // File f = new File(request.getRealPath("/upfile/")+"/"+filename);
					   //System.out.println(f);
					   bis = new BufferedInputStream((InputStream)new FileInputStream(request.getRealPath("/upfile/")+"/"+filename));
					    fos = response.getOutputStream();
					    bos = new BufferedOutputStream(fos);

					    int bytesRead = 0;
					    byte[] buffer = new byte[5 * 1024];
					    while ((bytesRead = bis.read(buffer)) != -1) {
					     bos.write(buffer, 0, bytesRead);
					    }
					    bos.close();
					    bis.close();
					    fos.close();
				
		               //new Info().delPic(request.getRealPath("/upfile/")+"/", filename);
		     } catch (Exception e) {
				e.printStackTrace();
			}finally{
			}
	}

	/**
	 * Initialization of the servlet. <br>
	 *
	 * @throws ServletException if an error occurs

		/*for (int i = 1; i <= this.pageNumber; i++) {
			if (this.currentPage == i)
				buf.append("<font color='red'>").append(i).append("</font>");

			else
				buf.append("<a href='").append(this.path).append(
						"&currentPage=").append(i).append(parameter).append(
						"' class='ls'>[").append(i).append(
						"]</a>");
		}*/

		buf.append("&nbsp;&nbsp;");
		if (this.currentPage < this.pageNumber) {
			buf.append("<a href='").append(this.path).append("&currentPage=")
					.append(currentPage + 1).append(parameter).append(
							"' class='ls'>").append("下页")
					.append("</a>");
		} else {

			buf.append("下页");

		}

		buf.append("&nbsp;&nbsp;&nbsp;&nbsp;");
		if (this.currentPage == this.pageNumber)
			buf.append("末页&nbsp;&nbsp;");
		else
			buf.append("<a href='").append(this.path).append("&currentPage=")
					.append(this.pageNumber).append(parameter).append(
							"' class='ls'>").append("末页")
					.append("</a></font>&nbsp;&nbsp;");
		// 
		// for (int i = 0; i < this.pageNumber; i++) {
		// if (this.currentPage == i + 1) {
		// buf.append("<font color=red>[" + (i + 1) + "]</font>").append(
		// "&nbsp;");
		// } else {
		// buf.append("<a href='").append(this.path).append(
		// "&currentPage=").append(i + 1).append(parameter)
		// .append("' style='TEXT-DECORATION:none'>").append(
	}

	/**
	 * 
	 * 
	 * @param hql语句
	 * 
	 */
	public void doList(String hql) {
        //String sql = "select count(*)  "+hql.substring(hql.indexOf("from"));
        //sql = sql.substring(0,sql.indexOf("order"));
		this.count = this.dao.select(hql).size();
		if (this.count != 0) {
			this.pageNumber = count % this.pageSize == 0 ? this.count
					/ this.pageSize : this.count / this.pageSize + 1;
			if (this.currentPage > this.pageNumber)
				this.currentPage = (int) this.pageNumber;

		}
		this.request.getSession().setAttribute("currentPage",
				String.valueOf(this.currentPage));
		this.collection = this.dao.select(hql,
				this.currentPage , this.pageSize);

		this.refreshUrl();
	}

	/**
	 * 
	 * @param 查询条件集合
	 *            如没有条件只是列表就不使用这个方法
	 */
	public void addParameter(List parameter) {

		StringBuffer para = new StringBuffer("");
		if (parameter != null && parameter.size() != 0) {
			Iterator iterator = parameter.iterator();
			while (iterator.hasNext()) {
				para.append("&").append(iterator.next().toString());
			}
		}
		this.parameter = para.toString();
		// if (this.currentPage == i + 1) {
		// buf.append("<font color=red>[" + (i + 1) + "]</font>").append(
		// "&nbsp;");
		// } else {
		// buf.append("<a href='").append(this.path).append(
		// "&currentPage=").append(i + 1).append(parameter)
		// .append("' style='TEXT-DECORATION:none'>").append(
		// "[" + (i + 1) + "]").append("</a>&nbsp;");
		// }

		// }
		buf.append("<select οnchange=\"javascript:window.location='").append(
				this.path).append("&currentPage='+").append(
				"this.options[this.selectedIndex].value").append(parameter)
				.append("\">");
		for (int i = 0; i < this.pageNumber; i++) {
			if (this.currentPage == i + 1)
				buf.append("<option value=" + (i + 1)
						+ " selected=\"selected\">" + (i + 1) + "</option>");
			else
				buf.append("<option value=" + (i + 1) + ">" + (i + 1)
						+ "</option>");

		}
		buf.append("</select>");
		this.info = buf.toString();
		
	}

	public Collection getCollection() {
		return collection;
	}

	public long getCount() {
		return count;
	}

	public int getCurrentPage() {
		return currentPage;
	}

	public long getPageNumber() {
		return pageNumber;
	}
            go("/userinfo.jsp", request, response);
        }

        //用户登陆
        if (ac.equals("plogin")) {
            String uname = request.getParameter("uname");
            String upass = request.getParameter("upass");
            ArrayList list = (ArrayList) dao.select("select * from patient where uname='" + uname + "' and upass='" + upass + "' and delstatus='0' ");
            if (list.size() == 1) {
                session.setAttribute("user", list.get(0));
                request.setAttribute("suc", "");
                gor("index.jsp", request, response);
            } else {
                request.setAttribute("no", "");
                go("index.jsp", request, response);
            }

        }

        //预约
        if (ac.equals("yy")) {
            String uid = user.get("id").toString();
            String type = request.getParameter("type");
            String dept = request.getParameter("id");
            String savetime = Info.getDateStr();
            dao.commOper("insert into yy (uid,type,dept,ghno,savetime) values ('" + uid + "','" + type + "','" + dept + "','','" + savetime + "') ");
            request.setAttribute("suc", "");
            go("yy.jsp?id=" + dept, request, response);
        }
        //挂号受理
        if (ac.equals("yysl")) {
            System.out.println("aa");
            String id = request.getParameter("id");
            HashMap map = dao.select("select * from yy where id=" + id).get(0);
            HashMap mm = dao.select("select * from patient where id=" + map.get("uid")).get(0);
            String ghno = Info.AutoID();
            String tname = mm.get("tname").toString();
            String sex = mm.get("sex").toString();
            String age = mm.get("age").toString();
            String idcard = mm.get("idcard").toString();
            String tel = mm.get("tel").toString();
            String addr = mm.get("addr").toString();
            String ghdept = map.get("dept").toString();
            String price = map.get("type").toString();
            String status = "待问诊";
            String delstatus = "0";
            String oper = "网上预约";
            String savetime = Info.getDateStr();
            dao.commOper("update yy set ghno ='" + ghno + "' where id=" + id);
            dao.commOper("insert into ghinfo (ghno,tname,sex,age,idcard,tel,addr,ghdept,price,status,delstatus,oper,savetime) " +
	            	String a = it.next().toString();
		            label1.setString(a);
		            ws.addCell(label1);
		            jj++;
	            		}
		            
		            i++;
	            } catch (RowsExceededException e1) {
					// TODO Auto-generated catch block
					e1.printStackTrace();
				} catch (WriteException e1) {
					// TODO Auto-generated catch block
					e1.printStackTrace();
				}    
	            }    
	   
	            try {    
	                //从内存中写入文件中    
	                wwb.write();    
	                //关闭资源,释放内存    
	                wwb.close();    
	            } catch (IOException e) {    
	                e.printStackTrace();    
	            } catch (Exception e) {    
	                e.printStackTrace();    
	            }    
	        }
	        try {
				response.sendRedirect("/srykzsblmis/upload?filename="+fileName.substring(fileName.lastIndexOf("/")+1));
			} catch (IOException e) {
				e.printStackTrace();
			}
	        
	    }    

		public static void main(String[] args) {
			String a = "A020$A004$";
			String[] aa = a.split("\\$");
			for(int i=0;i<aa.length;i++){
				System.out.println(aa[i]);
			}
			
		}
		
}

		


            String sql = "select * from zd where fkstatus='已付款' ";
            sql += "order by ghno desc";
            ArrayList<HashMap> list = (ArrayList) dao.select(sql);
            List<List> rlist = new ArrayList();
            DecimalFormat decimal = new DecimalFormat("#.#");
            for (HashMap map : list) {

                HashMap am = dao.select("select * from ghinfo where ghno='" + map.get("ghno") + "'").get(0);
                HashMap mstu = dao.select("select * from zd where ghno='" + map.get("ghno") + "'").get(0);
                String info = mstu.get("info").toString();
                String numinfo = mstu.get("numinfo").toString();
                String yinfo = "";
                String a[] = info.split("\\$");
                String b[] = numinfo.split("\\$");
                for (int i = 0; i < a.length; i++) {
                    yinfo += a[i] + "&nbsp;&nbsp;数量:" + b[i] + "<br/>";
                }
                List mlist = new ArrayList();
                mlist.add(map.get("ghno"));
                mlist.add(am.get("tname"));
                mlist.add(am.get("sex"));
                mlist.add(am.get("age"));
                mlist.add(mstu.get("bq"));
                mlist.add(mstu.get("zd"));
                mlist.add(yinfo);
                mlist.add(decimal.format(Double.valueOf(map.get("totalprice").toString())) + "元");
                mlist.add(map.get("sfoper"));
                mlist.add(map.get("sfsavetime"));
                rlist.add(mlist);
            }
            //String[] pros = {"挂号编号","患者姓名","收费金额","收费人","收费时间"};
            String[] pros = {"挂号编号", "患者姓名", "性别", "年龄", "病情", "诊断", "药品处置", "收费金额", "收费人", "收费时间"};
            Info.writeExcel(request.getRealPath("/upfile/") + "/sfexport.xls", pros, rlist, request, response);
        }

        if (ac.equals("ghexport")) {

            String sql = "select * from ghinfo where 1=1 and delstatus='0'";
            sql += "order by id desc";
            ArrayList<HashMap> list = (ArrayList) dao.select(sql);
            List<List> rlist = new ArrayList();
            DecimalFormat decimal = new DecimalFormat("#.#");
            for (HashMap map : list) {
                List mlist = new ArrayList();
                mlist.add(map.get("ghno"));
                mlist.add(decimal.format(Double.valueOf(map.get("price").toString())) + "元");
                HashMap dm = dao.select("select * from dept where id=" + map.get("ghdept")).get(0);
                mlist.add(dm.get("deptname"));
                mlist.add(map.get("oper"));
                mlist.add(map.get("savetime"));
				response.sendRedirect("/srykzsblmis/upload?filename="+fileName.substring(fileName.lastIndexOf("/")+1));
			} catch (IOException e) {
				e.printStackTrace();
			}
	        
	    }    

		public static void main(String[] args) {
			String a = "A020$A004$";
			String[] aa = a.split("\\$");
			for(int i=0;i<aa.length;i++){
				System.out.println(aa[i]);
			}
			
		}
		
}

		

public class PageManager {
	private PageManager() {

	}

	// 默认一页最大记录数
	public static final int DEFAULTPAGESIZE = 20;

	// 分页段
	public static final int segment = 10;

	// 当前页数
	protected int currentPage;

	// 一页长度
	protected int pageSize;

	// 总页数
	protected long pageNumber;

	// 总记录数
                        }
                        int kc = innum - outnum;

                        dao.commOper("insert into kcrecord (yno,num,type,savetime,oper) values ('" + yno + "','" + num + "','out','" + Info.getDateStr() + "','" + admin.get("uname") + "') ");
                    }
                }
                dao.commOper("update zd set fyoper='" + admin.get("uname") + "',fysavetime='" + Info.getDateStr() + "',qystatus='已取药'  where ghno='" + ghno + "'");
                request.setAttribute("suc", "");
                go("/admin/dfy.jsp", request, response);
            } else {
                request.setAttribute("no", "");
                go("/admin/dfy.jsp", request, response);
            }
        }

        //注册
        if (ac.equals("regedit")) {
            System.out.println("123123");
            String uname = request.getParameter("uname");
            String upass = request.getParameter("upass");
            String tname = request.getParameter("tname");
            String sex = request.getParameter("sex");
            String age = request.getParameter("age");
            String idcard = request.getParameter("idcard");
            String tel = request.getParameter("tel");
            String addr = request.getParameter("addr");
            String delstatus = "0";
            ArrayList cklist = (ArrayList) dao.select("select * from patient where delstatus='0' and uname='" + uname + "' ");
            if (cklist.size() > 0) {
                request.setAttribute("no", "");
            } else {
                dao.commOper("insert into patient (uname,upass,tname,sex,age,idcard,tel,addr,delstatus) values " +
                        "('" + uname + "','" + upass + "','" + tname + "','" + sex + "','" + age + "','" + idcard + "','" + tel + "','" + addr + "','" + delstatus + "') ");
                request.setAttribute("suc", "");
                go("/regedit.jsp", request, response);
            }
        }
        //患者修改个人信息
        if (ac.equals("userinfo")) {
            String id = request.getParameter("id");
            String upass = request.getParameter("upass");
            String tname = request.getParameter("tname");
            String sex = request.getParameter("sex");
            String age = request.getParameter("age");
            String idcard = request.getParameter("idcard");
            String tel = request.getParameter("tel");
            String addr = request.getParameter("addr");
            dao.commOper("update patient set upass='" + upass + "',tname='" + tname + "',sex='" + sex + "',age='" + age + "'," +
                    " idcard='" + idcard + "',tel='" + tel + "',addr='" + addr + "' where id=" + id);
            request.setAttribute("suc", "");
            go("/userinfo.jsp", request, response);

		try {
			this.currentPage = Integer.parseInt(request
					.getParameter("currentPage")) <= 0 ? 1 : Integer
					.parseInt(request.getParameter("currentPage"));

		} catch (Exception e) {

			try {
				this.currentPage = Integer.parseInt((String) request
						.getSession().getAttribute("currentPage"));

			} catch (Exception e1) {
				this.currentPage = 1;

			}

		}

	}
	
	
	
	

	
	

	/**
	 * 
	 * @param 下一页的分页链接
	 * @param 一页最大记录数
	 * @param 当前HttpServletRequest对象
	 * @param 数据库操作对象
	 */
	public static PageManager getPage(String path, int pageSize,
			HttpServletRequest request) {
		return new PageManager(path, pageSize, request);

	}

	/**
	 * 
	 * 
	 * @param hql语句
	 * 
	 */
        }

    }

    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
        HttpSession session = request.getSession();
        HashMap admin = (HashMap) session.getAttribute("admin");
        HashMap user = (HashMap) session.getAttribute("user");
        String ac = request.getParameter("ac");
        if (ac == null) ac = "";
        CommDAO dao = new CommDAO();
        String date = Info.getDateStr();
        String today = date.substring(0, 10);
        String tomonth = date.substring(0, 7);

        //登录
        if (ac.equals("login")) {
            String utype = request.getParameter("utype");
            String username = request.getParameter("uname");
            String password = request.getParameter("upass");
            String sql = "select * from sysuser where uname='" + username + "' and upass='" + password + "' ";
            List<HashMap> userlist = dao.select(sql);
            if (userlist.size() != 1) {
                request.setAttribute("error", "");
                go("/admin/login.jsp", request, response);
            } else {
                request.getSession().setAttribute("admin", userlist.get(0));
                gor("/srykzsblmis/admin/index.jsp", request, response);
            }
        }

        //添加用户
        if (ac.equals("sysuseradd")) {
            String uname = request.getParameter("uname");
            String cksql = "select * from sysuser where uname='" + uname + "'";
            ArrayList cklist = (ArrayList) dao.select(cksql);
            if (cklist.size() != 0) {
                request.getParameter("no");
                go("/admin/sysuseradd.jsp", request, response);
					     bos.write(buffer, 0, bytesRead);
					    }
					    bos.close();
					    bis.close();
					    fos.close();
				
		               //new Info().delPic(request.getRealPath("/upfile/")+"/", filename);
		     } catch (Exception e) {
				e.printStackTrace();
			}finally{
			}
	}

	/**
	 * Initialization of the servlet. <br>
	 *
	 * @throws ServletException if an error occurs
	 */
	public void init() throws ServletException {
		// Put your code here
	}

}

public class SetChar extends HttpServlet implements Filter {
	private FilterConfig filterConfig;

	// Handle the passed-in FilterConfig
	public void init(FilterConfig filterConfig) throws ServletException {
		this.filterConfig = filterConfig;
	}

	// Process the request/response pair
	public void doFilter(ServletRequest request, ServletResponse response,
			FilterChain filterChain) {
		try {
			  ((HttpServletResponse) response).setHeader("Pragma", "No-cache");
        //注册
        if (ac.equals("regedit")) {
            System.out.println("123123");
            String uname = request.getParameter("uname");
            String upass = request.getParameter("upass");
            String tname = request.getParameter("tname");
            String sex = request.getParameter("sex");
            String age = request.getParameter("age");
            String idcard = request.getParameter("idcard");
            String tel = request.getParameter("tel");
            String addr = request.getParameter("addr");
            String delstatus = "0";
            ArrayList cklist = (ArrayList) dao.select("select * from patient where delstatus='0' and uname='" + uname + "' ");
            if (cklist.size() > 0) {
                request.setAttribute("no", "");
            } else {
                dao.commOper("insert into patient (uname,upass,tname,sex,age,idcard,tel,addr,delstatus) values " +
                        "('" + uname + "','" + upass + "','" + tname + "','" + sex + "','" + age + "','" + idcard + "','" + tel + "','" + addr + "','" + delstatus + "') ");
                request.setAttribute("suc", "");
                go("/regedit.jsp", request, response);
            }
        }
        //患者修改个人信息
        if (ac.equals("userinfo")) {
            String id = request.getParameter("id");
            String upass = request.getParameter("upass");
            String tname = request.getParameter("tname");
            String sex = request.getParameter("sex");
            String age = request.getParameter("age");
            String idcard = request.getParameter("idcard");
            String tel = request.getParameter("tel");
            String addr = request.getParameter("addr");
            dao.commOper("update patient set upass='" + upass + "',tname='" + tname + "',sex='" + sex + "',age='" + age + "'," +
                    " idcard='" + idcard + "',tel='" + tel + "',addr='" + addr + "' where id=" + id);
            request.setAttribute("suc", "");
            go("/userinfo.jsp", request, response);
        }

        //用户登陆
        if (ac.equals("plogin")) {
            String uname = request.getParameter("uname");
            String upass = request.getParameter("upass");
            ArrayList list = (ArrayList) dao.select("select * from patient where uname='" + uname + "' and upass='" + upass + "' and delstatus='0' ");
            if (list.size() == 1) {
                session.setAttribute("user", list.get(0));
                request.setAttribute("suc", "");
                gor("index.jsp", request, response);
            } else {
                request.setAttribute("no", "");
                go("index.jsp", request, response);
            }

		}
		this.request.getSession().setAttribute("currentPage",
				String.valueOf(this.currentPage));
		this.collection = this.dao.select(hql,
				this.currentPage , this.pageSize);

		this.refreshUrl();
	}

	/**
	 * 
	 * @param 查询条件集合
	 *            如没有条件只是列表就不使用这个方法
	 */
	public void addParameter(List parameter) {

		StringBuffer para = new StringBuffer("");
		if (parameter != null && parameter.size() != 0) {
			Iterator iterator = parameter.iterator();
			while (iterator.hasNext()) {
				para.append("&").append(iterator.next().toString());
			}
		}
		this.parameter = para.toString();

	}

	/**
	 * 刷新分页路径
	 * 
	 */
	protected void refreshUrl() {
		StringBuffer buf = new StringBuffer();
		buf.append("<font color='#1157B7'>共").append(count);
		buf.append("条");
		buf.append("&nbsp;&nbsp;");
		buf.append("第").append(this.currentPage).append("/").append(
				this.pageNumber).append("页");
		buf.append("&nbsp;&nbsp;&nbsp;&nbsp;");
		if (this.currentPage == 1)
			buf.append("首页");
		else
			buf.append("<a href='").append(this.path).append("&currentPage=1")
					.append(parameter)
					.append("' class='ls'>").append("首页")
					.append("</a>");
		// #1157B7
		buf.append("&nbsp;&nbsp;&nbsp;");

请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

java毕业

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值