资源简介
用JSP做的一个NBA球队信息管理系统,数据库为MySQL。基本实现了功能有登陆,注册,增删改,查询。值得初学者学习学习。
代码片段和文件信息
package servlet;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.*;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.swing.JOptionPane;
import sun.management.jmxremote.ConnectorBootstrap;
public class AddServlet extends HttpServlet {
/**
* Constructor of the object.
*/
public AddServlet() {
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 {
doPost(requestresponse);
}
/**
* 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 {
String id = new String(request.getParameter(“id“).getBytes(“ISO-8859-1“)“UTF-8“);
String teamname = new String(request.getParameter(“teamname“).getBytes(“ISO-8859-1“)“UTF-8“);
String belongsunion = new String(request.getParameter(“belongsunion“).getBytes(“ISO-8859-1“)“UTF-8“);
String belongscity = new String(request.getParameter(“belongscity“).getBytes(“ISO-8859-1“)“UTF-8“);
String championsum = new String(request.getParameter(“championsum“).getBytes(“ISO-8859-1“)“UTF-8“);
Connection dbconn = null;
Statement stmt = null;
ResultSet rs = null;
if(teamname.equals(““) || id.equals(““)){
JOptionPane.showMessageDialog(null “编号和队名不能为空!!!““信息提示“JOptionPane.YES_NO_OPTION);
response.sendRedirect(“add.jsp“);
}
else{
try{
String driver = “com.mysql.jdbc.Driver“;
String url = “jdbc:mysql://localhost:3306/nba“;
String user = “sa“;
String Password = “123“;
Class.forName(driver);
dbconn = DriverManager.getConnection(url user Password);
stmt = dbconn.createStatement();
String sql1 = “select * from nbateam where TeamName=‘“+teamname+“‘“;
String sql2 = “insert into nbateam values(‘“+id+“‘‘“+teamname+“‘‘“+belongsunion+“‘‘“+belongscity+“‘‘“+championsum+“‘)“;
rs = stmt.executeQuery(sql1)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 92 2014-08-31 21:14 user.sql
文件 2347 2014-08-31 21:14 nbateam.sql
目录 0 2014-08-31 21:04 MY_NBA\
文件 529 2014-08-31 21:04 MY_NBA\.classpath
目录 0 2014-08-31 21:05 MY_NBA\.myeclipse\
文件 291 2014-08-31 21:04 MY_NBA\.myme
文件 1749 2014-08-31 21:04 MY_NBA\.project
目录 0 2014-08-31 21:04 MY_NBA\.settings\
文件 500 2014-08-31 21:04 MY_NBA\.settings\.jsdtscope
文件 364 2014-08-31 21:04 MY_NBA\.settings\org.eclipse.jdt.core.prefs
文件 456 2014-08-31 21:04 MY_NBA\.settings\org.eclipse.wst.common.component
文件 252 2014-08-31 21:04 MY_NBA\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2014-08-31 21:04 MY_NBA\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2014-08-31 21:04 MY_NBA\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2014-08-31 21:04 MY_NBA\WebRoot\
目录 0 2014-08-31 21:04 MY_NBA\WebRoot\me
文件 36 2014-08-31 21:04 MY_NBA\WebRoot\me
目录 0 2014-08-31 21:04 MY_NBA\WebRoot\WEB-INF\
目录 0 2014-08-31 21:04 MY_NBA\WebRoot\WEB-INF\classes\
目录 0 2014-08-31 21:04 MY_NBA\WebRoot\WEB-INF\classes\servlet\
文件 3985 2014-08-31 21:04 MY_NBA\WebRoot\WEB-INF\classes\servlet\AddServlet.class
文件 4333 2014-08-31 21:04 MY_NBA\WebRoot\WEB-INF\classes\servlet\CheckServlet.class
文件 3930 2014-08-31 21:04 MY_NBA\WebRoot\WEB-INF\classes\servlet\ConserveServlet.class
文件 3361 2014-08-31 21:04 MY_NBA\WebRoot\WEB-INF\classes\servlet\DeleteServlet.class
文件 4035 2014-08-31 21:04 MY_NBA\WebRoot\WEB-INF\classes\servlet\RegisterServlet.class
文件 3965 2014-08-31 21:04 MY_NBA\WebRoot\WEB-INF\classes\servlet\UpdateServlet.class
目录 0 2014-08-31 21:04 MY_NBA\WebRoot\WEB-INF\lib\
文件 789885 2014-08-31 21:04 MY_NBA\WebRoot\WEB-INF\lib\mysql-connector-java-5.1.18-bin.jar
文件 2984 2014-08-31 21:04 MY_NBA\WebRoot\WEB-INF\web.xm
文件 1611 2014-08-31 21:04 MY_NBA\WebRoot\add.jsp
文件 2303 2014-08-31 21:04 MY_NBA\WebRoot\authcodeimage.jsp
............此处省略32个文件信息
- 上一篇:在线相册管理系统
- 下一篇:webrtc apprtc.apk
相关资源
- 在线相册管理系统
- JSP+SQL超市管理系统
- JSP在校大学生贷款管理系统
- JSP论坛系统(程序毕业论文外文翻译
- Javaweb+mysql图书管理系统
- javaEE+jsp+MySql学生成绩管理系统(ecl
- jsp+sql火车订票系统269568
- jsp+sql团购网站
- jsp常用模板
- servlet&jsp学习笔记项目源码
- xp安装 JDK+TOMCAT+MYSQL+jsp论坛
- 学院网站设计j2ee
- JavaWeb图书馆管理系统Jsp
- JSP+SQL学生选课系统269113
- jsp学生成绩分析管理系统
- JSP手机话费查询系统
- JSP 聊天室---毕业设计
- JSP在线排课系统的设计与实现
- mysql-connector-java5.1.30
- jsp+servlet 简单实现注册,登录,购物
- 网上购物系统 Java JSP sql带数据库
- 整合springboot+mvc+mybatis(通用mapper)
- Jsp+Mysql+Jdbc+Servlet适合初学者的登陆查
- JSP课程设计
- 基于javaweb的火车票订购系统
- 一个jsp做的购物小网站
- JSP驾校管理系统
- mysql-5.5.27驱动
- Android网上订餐系统带后台管理系统
- 教材订购系统JSP版
评论
共有 条评论