资源简介
基于Java+Web技术开发的BBS论坛系统源代码
代码片段和文件信息
//JDBC_BBS.java
import java.sql.*;
public class JDBC_BBS {
public static void main(String[] args) {
try {
Class.forName(“com.mysql.jdbc.Driver“);// 注册MySQL 的驱动
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
// 先定义变量,后使用和关闭
Connection conn = null;// 数据库连接
Statement stmt = null;// 数据库表达式
ResultSet rs = null;// 结果集
try {
// 获取数据库的连接
conn = java.sql.DriverManager
.getConnection(
“jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=GBK“
“root“ “root“);
// root是用户名,密码为root编码为GBK
// 获取表达式
stmt = conn.createStatement();
stmt.executeUpdate(“drop table student“);// 删除表student
stmt.executeUpdate(“drop table discuss“);// 删除表discuss
stmt.executeUpdate(“drop table reply“);// 删除表reply
// 创建表student
stmt
.executeUpdate(“create table student(id int not null auto_increment“
+ “username varchar(20) unique“
+ “password varchar(20) not null“
+ “sex varchar(8) not null“
+ “age varchar(4) “
+ “birth varchar(20) not null“
+ “telephone varchar(12)“
+ “email varchar(40) not null“
+ “primary key (id))“);
// 创建表discuss
stmt.executeUpdate(“create table discuss(name char(20) not null“
+ “email char(40) not null“ + “subject char(60) not null“
+ “content text not null“ + “time char(40)“
+ “username char(20)“
+ “id int not null auto_incrementprimary key (id))“);
// 创建表reply
stmt.executeUpdate(“create table reply(name char(20) not null“
+ “content text not null“ + “time char(40)reply int“
+ “id int not null auto_increment“ + “primary key (id))“);
stmt
.executeUpdate(“insert into discuss(nameemailsubjectcontenttimeusername) values(‘FrogKing‘ ‘menghuan277717@163.com‘‘Test‘‘The first input data!‘‘2009年4月18日18:30:30‘‘FrogKing‘)“);
// 执行插入数据的 SQL
stmt
.executeUpdate(“insert into Student(usernamepasswordsexagebirthtelephoneemail) values(‘Tome‘ ‘1234‘‘男‘20‘‘‘13820991219‘‘menghuan277717@163.com‘)“);
stmt
.executeUpdate(“insert into Student(usernamepasswordsexagebirthtelephoneemail) values(‘Bell‘ ‘1234‘‘男‘20‘‘‘13820991219‘‘menghuan277717@163.com‘)“);
stmt
.executeUpdate(“insert into Student(usernamepasswordsexagebirthtelephoneemail) values(‘Jack‘ ‘1234‘‘男‘20‘‘‘13820991219‘‘menghuan277717@163.com‘)“);
stmt
.executeUpdate(“insert into Student(usernamepasswordsexagebirthtelephoneemail) values(‘FrogKing‘ ‘123456‘‘男‘20‘‘‘13820991219‘‘menghuan277717@163.com‘)“);
} catch (SQLException e) {
e.printStackTrace();
} finally {// 释放资源
// try {
// rs.close();
// } catch (SQLException e) {
// }
try {
stmt.close();
} catch (SQLException e) {
}
try {
conn.close();
} catch (SQLException e) {
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1413 2009-07-04 14:22 附件程序\BBSTalk\.project
文件 300 2009-07-04 14:22 附件程序\BBSTalk\.myme
文件 533 2009-05-11 14:11 附件程序\BBSTalk\.classpath
文件 1569 2009-05-26 22:33 附件程序\BBSTalk\WebRoot\login.html
文件 4406 2009-05-26 23:26 附件程序\BBSTalk\WebRoot\discuss.jsp
文件 4927 2009-05-20 02:51 附件程序\BBSTalk\WebRoot\detail.jsp
文件 1295 2009-07-04 16:26 附件程序\BBSTalk\WebRoot\opendata.jsp
文件 1009 2009-05-19 16:16 附件程序\BBSTalk\WebRoot\convert.jsp
文件 7118 2009-05-20 03:32 附件程序\BBSTalk\WebRoot\register.jsp
文件 2421 2009-05-20 03:38 附件程序\BBSTalk\WebRoot\saveregister.jsp
文件 970 2009-05-19 13:39 附件程序\BBSTalk\WebRoot\MainForm.jsp
文件 1206 2009-05-19 13:41 附件程序\BBSTalk\WebRoot\person.jsp
文件 2065 2009-05-20 03:58 附件程序\BBSTalk\WebRoot\delete.jsp
文件 2225 2009-05-20 03:25 附件程序\BBSTalk\WebRoot\saveNewti
文件 2533 2009-05-19 13:39 附件程序\BBSTalk\WebRoot\newti
文件 3175 2009-05-20 03:41 附件程序\BBSTalk\WebRoot\getPassword.jsp
文件 1791 2009-05-20 02:11 附件程序\BBSTalk\WebRoot\enter.jsp
文件 2005 2009-05-20 03:12 附件程序\BBSTalk\WebRoot\saveRevert.jsp
文件 57018 2009-03-29 21:21 附件程序\BBSTalk\WebRoot\Pictures\111.jpg
文件 40644 2009-04-05 17:13 附件程序\BBSTalk\WebRoot\Pictures\MainJPG.jpg
文件 2093 2009-05-05 17:29 附件程序\BBSTalk\WebRoot\Pictures\BGBlue.jpg
文件 74518 2009-05-19 10:13 附件程序\BBSTalk\WebRoot\Pictures\head.bmp
文件 5386 2009-05-19 10:42 附件程序\BBSTalk\WebRoot\Pictures\delete.bmp
文件 36724 2009-05-26 22:33 附件程序\BBSTalk\WebRoot\Pictures\001.jpg
文件 22965 2009-05-26 23:25 附件程序\BBSTalk\WebRoot\Pictures\discuss.jpg
文件 39 2009-03-18 00:49 附件程序\BBSTalk\WebRoot\me
文件 392 2009-05-19 22:47 附件程序\BBSTalk\WebRoot\WEB-INF\web.xm
文件 3089 2009-07-04 16:16 附件程序\BBSTalk\WebRoot\WEB-INF\classes\JDBC_BBS.class
文件 493105 2009-03-18 09:56 附件程序\BBSTalk\WebRoot\WEB-INF\lib\mysql-connector-java-5.0.3-bin.jar
文件 3027 2009-07-04 16:16 附件程序\BBSTalk\src\JDBC_BBS.java
............此处省略21个文件信息
- 上一篇:PinYin4j.jar
- 下一篇:动物换位游戏
评论
共有 条评论