资源简介
使用fullcalendar插件开发的一个java web小实例,功能比较简单,导入myeclipse可直接运行
代码片段和文件信息
package com.servlet;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class Dao {
private String myDriver;
private String myConnStr;
private Connection conn;
private ResultSet result;
private Statement statement;
public Dao() {
myDriver = “com.mysql.jdbc.Driver“;
myConnStr = “jdbc:mysql://localhost:3306/fullcalendar?useUnicode=true&characterEncoding=utf8“;
try {
Class.forName(myDriver);
} catch (ClassNotFoundException e) {
System.err.println(“DBManager():“ + e.getMessage());
}
}
public boolean executeInsert(String sql) {
try {
conn = DriverManager.getConnection(myConnStr “root“ “123456“);
statement = conn.createStatem
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-08-31 12:04 fullcaledar\
文件 1024 2014-08-31 15:54 fullcaledar\.classpath
目录 0 2014-08-31 18:16 fullcaledar\.myeclipse\
文件 306 2014-08-31 12:04 fullcaledar\.myme
文件 1417 2014-08-31 12:14 fullcaledar\.project
目录 0 2014-08-31 12:04 fullcaledar\.settings\
文件 500 2014-08-31 12:04 fullcaledar\.settings\.jsdtscope
文件 49 2014-08-31 12:04 fullcaledar\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2014-08-31 12:04 fullcaledar\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2014-08-31 18:15 fullcaledar\WebRoot\
目录 0 2014-08-31 12:04 fullcaledar\WebRoot\me
文件 36 2014-08-31 12:04 fullcaledar\WebRoot\me
目录 0 2014-08-31 17:10 fullcaledar\WebRoot\WEB-INF\
目录 0 2014-08-31 15:54 fullcaledar\WebRoot\WEB-INF\classes\
目录 0 2014-08-31 15:54 fullcaledar\WebRoot\WEB-INF\classes\com\
目录 0 2014-08-31 16:01 fullcaledar\WebRoot\WEB-INF\classes\com\servlet\
文件 2734 2014-08-31 18:14 fullcaledar\WebRoot\WEB-INF\classes\com\servlet\Dao.class
文件 1444 2014-08-31 18:14 fullcaledar\WebRoot\WEB-INF\classes\com\servlet\Data.class
文件 2793 2014-08-31 17:48 fullcaledar\WebRoot\WEB-INF\classes\com\servlet\DataServlet.class
目录 0 2014-08-31 15:54 fullcaledar\WebRoot\WEB-INF\lib\
文件 232019 2014-08-31 12:10 fullcaledar\WebRoot\WEB-INF\lib\commons-beanutils-1.8.3.jar
文件 559366 2014-08-31 12:10 fullcaledar\WebRoot\WEB-INF\lib\commons-collections.jar
文件 207723 2014-08-31 12:10 fullcaledar\WebRoot\WEB-INF\lib\commons-lang.jar
文件 60841 2014-08-31 12:10 fullcaledar\WebRoot\WEB-INF\lib\commons-logging-1.1.1.jar
文件 86463 2014-08-31 12:10 fullcaledar\WebRoot\WEB-INF\lib\ezmorph-1.0.5.jar
文件 143977 2014-08-31 12:10 fullcaledar\WebRoot\WEB-INF\lib\json-lib-2.2.2-jdk15.jar
文件 75228 2014-08-31 12:10 fullcaledar\WebRoot\WEB-INF\lib\morph-sandbox-1.1.1.jar
文件 446464 2014-08-31 15:54 fullcaledar\WebRoot\WEB-INF\lib\mysql-connector-java-3.1.12-bin.jar
文件 642 2014-08-31 12:07 fullcaledar\WebRoot\WEB-INF\web.xm
目录 0 2014-08-31 13:00 fullcaledar\WebRoot\fullcalendar\
文件 29890 2014-08-31 12:25 fullcaledar\WebRoot\fullcalendar\changelog.txt
............此处省略103个文件信息
相关资源
- WebLogic部署安装(Linux).docx
- Java入门-Servlet中连接数据库(80).z
- WebAPI:Dubbo+ZuulFile+SpringBoot+Swagger
- 传智Java Web开发视频教程资源网址
- weblogic基本概念
- 简单的费率计算jsp页面源码(仅一个
- Java入门-客户登录Servlet小程序(82)
- 仿163网盘无刷新文件上传 for Jsp_file
- Java websocket入门级
- fushionchart jsp demo
- 黑马程序员 javaweb源码
- spring-swagger2(实现在线webapi 接口文档
- jsp FriendlyURL-portlet(Liferay 6.1)
- Android 使用WebView访问明日学院(网络
- jsp 多文件上传(zyupload)
- 基于jsp的高校网上订餐系统(论文+源
- spring boot mybatis jsp前端展示对mysql增删
- 基于jsp+mysql的二手物品交易系统源码
- jsp毕业设计选题管理系统.rar
- 失物招领系统 java web
- java web学习入门的失物招领系统源码(
- jsp+servlet+access学生选课信息管理系统
- JSP基于网络超市商品销售管理系统的
- jsp民宿管理系统源码(前端android后端
- javaee毕业生就业管理系统servlet+mysql(
- JAVA JSP健康档案系统 源代码
- 基于jsp的图书管理系统(源码+数据库
- javaweb校园管理系统源码
- JSP+SERVLET+MYSQL实现的增删改查javaweb小
- javaweb电影管理系统
评论
共有 条评论