资源简介
简单的留言板程序,可以学习,也可以当作一次实验报告。用户名密码都是root
代码片段和文件信息
/* */ package dao;
/* */ import java.sql.PreparedStatement;
/* */ import java.sql.ResultSet;
/* */ import java.util.ArrayList;
import java.util.List;
import dbc.DatabaseConnection;
import model.Note;
/* */
/* */ public class NoteDAO{
/* */ public void insert(Note note)throws Exception{
/* 11 */ String sql = “INSERT INTO note1(titleauthorcontent) VALUES(???)“;
/* 12 */ PreparedStatement pstmt = null;
/* 13 */ DatabaseConnection dbc = null;
/* 14 */ dbc = new DatabaseConnection();
/* */ try
/* */ {
/* 17 */ pstmt = dbc.getConnection().prepareStatement(sql);
/* 18 */ pstmt.setString(1 note.gettitle());
/* 19 */ pstmt.setString(2 note.getAuthor());
/* 20 */ pstmt.setString(3 note.getContent());
/* 21 */ pstmt.executeUpdate();
/* 22 */ pstmt.close();
/* */ }
/* */ catch (Exception e)
/* */ {
/* 27 */ throw new Exception(“操作中出现错误!!!“);
/* */ }
/* */ finally
/* */ {
/* 31 */ dbc.close();
/* */ }
/* */ }
/* */
/* */ public void update(Note note) throws Exception
/* */ {
/* 37 */ String sql = “UPDATE note1 SET title=?author=?content=? WHERE id=?“;
/* 38 */ PreparedStatement pstmt = null;
/* 39 */ DatabaseConnection dbc = null;
/* 40 */ dbc = new DatabaseConnection();
/* */ try
/* */ {
/* 43 */ pstmt = dbc.getConnection().prepareStatement(sql);
/* 44 */ pstmt.setString(1 note.gettitle());
/* 45 */ pstmt.setString(2 note.getAuthor());
/* 46 */ pstmt.setString(3 note.getContent());
/* 47 */ pstmt.setInt(4 note.getId());
/* 48 */ pstmt.executeUpdate();
/* 49 */ pstmt.close();
/* */ }
/* */ catch (Exception e){
/* 53 */ throw new Exception(“操作中出现错误!!!“);
/* */ }finally{
/* 57 */ dbc.close();
/* */ }
/* */ }
/* */
/* */ public void delete(int id) throws Exception
/* */ {
/* 63 */ String sql = “DELETE FROM note1 WHERE id=?“;
/* 64 */ PreparedStatement pstmt = null;
/* 65 */ DatabaseConnection dbc = new DatabaseConnection();
/* */ try
/* */ {
/* 69 */ pstmt = dbc.getConnection().prepareStatement(sql);
/* 70 */ pstmt.setInt(1 id);
/* 71 */ pstmt.executeUpdate();
/* 72 */ pstmt.close();
/* */ }
/* */ catch (Exception e){
/* 76 */ throw new Exception(“操作中出现错误!!!“);
/* */ }
/* */ finally{
/* 80 */ dbc.close();
/* */ }
/* */ }
/* */
/* */ public Note queryById(int id) throws Exception
/* */ {
/* 86 */ Note note = null;
/* 87 */ String sql = “SELECT idtitleauthorcontent FROM note1 WHERE id=?“;
/* 88 */ PreparedStatement pstmt = null;
/* 89 */ DatabaseConnection dbc = nul
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-11-26 15:54 Note\
文件 455 2017-10-18 18:31 Note\.classpath
目录 0 2018-01-08 15:24 Note\.myeclipse\
文件 285 2018-01-07 15:44 Note\.myme
文件 1410 2017-10-18 18:37 Note\.project
目录 0 2017-11-26 15:54 Note\.settings\
文件 500 2017-10-18 18:30 Note\.settings\.jsdtscope
文件 49 2017-10-18 18:30 Note\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2017-10-18 18:30 Note\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2017-11-26 15:54 Note\WebRoot\
目录 0 2017-11-26 15:54 Note\WebRoot\me
文件 36 2017-10-18 18:30 Note\WebRoot\me
目录 0 2017-11-26 15:54 Note\WebRoot\WEB-INF\
目录 0 2018-01-07 22:49 Note\WebRoot\WEB-INF\classes\
目录 0 2018-01-07 22:49 Note\WebRoot\WEB-INF\classes\dao\
文件 4826 2018-01-07 22:49 Note\WebRoot\WEB-INF\classes\dao\NoteDAO.class
文件 1682 2018-01-07 22:49 Note\WebRoot\WEB-INF\classes\dao\PersonDAO.class
目录 0 2018-01-07 22:49 Note\WebRoot\WEB-INF\classes\dbc\
文件 1107 2018-01-07 22:49 Note\WebRoot\WEB-INF\classes\dbc\Databa
目录 0 2018-01-07 22:49 Note\WebRoot\WEB-INF\classes\model\
文件 1074 2018-01-07 22:49 Note\WebRoot\WEB-INF\classes\model\Note.class
文件 875 2018-01-07 22:49 Note\WebRoot\WEB-INF\classes\model\Person.class
目录 0 2018-01-07 22:49 Note\WebRoot\WEB-INF\classes\servlet\
文件 2040 2018-01-07 22:49 Note\WebRoot\WEB-INF\classes\servlet\LoginServlet.class
文件 3467 2018-01-07 22:49 Note\WebRoot\WEB-INF\classes\servlet\NoteServlet.class
目录 0 2017-11-26 15:54 Note\WebRoot\WEB-INF\lib\
文件 703265 2017-10-18 18:31 Note\WebRoot\WEB-INF\lib\mysql-connector-java-5.1.6-bin.jar
文件 756 2017-10-18 18:32 Note\WebRoot\WEB-INF\web.xm
文件 1022 2017-10-18 18:31 Note\WebRoot\delete_do.jsp
文件 748 2017-10-18 18:31 Note\WebRoot\errors.jsp
文件 1233 2018-01-07 23:22 Note\WebRoot\index.jsp
............此处省略20个文件信息
相关资源
- javaweb图书借阅管理系统171204
- 百度网盘javaEE.txt
- java大作业之留言板
- myeclipse各种插件
- 史上最全javase|javaee开发文档,一次打
- javaee中文api
- 基于JavaEE学校排课系统含源码
- javaEE帮助文档API中文汉化版.zip
- J2EE——MyEclipse实现网页的登录和注册
- 基于MyEclipse开发的超市管理系统
- 传智javaee药品集中采购系统项目mysq
- javaee-api-6.0.jar JavaEE6 servlet JavaEE6 we
- java网络留言板Java源码
- java web开发简单留言板
- 文字版三国杀
- 软院javaee学习笔记有部分代码
- 轻量级javaee企业应用实战第四版.doc
- JavaEE企业级应用开发教程SpringSpringM
-
运用xm
l实现留言板系统 - 基于jsp的留言板课程设计
- MyEclipse+Servlet+Jsp+MySql+Tomcat实现简单订
- java写的图书管理系统Myeclipse
- jsp+myeclipse+mysql员工管理系统
- 图书馆管理系统myeclipse+mysql 亲测可用
- Java EE期末考试试题
- javaEE复习题
- javaeeMVC模式登录加验证码
- 一个简单的jsp留言板
- javaEE课程设计报告图书管理系统
- javaee实验
评论
共有 条评论