资源简介

使用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\.mymetadata
     文件        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\meta-INF\
     文件          36  2014-08-31 12:04  fullcaledar\WebRoot\meta-INF\MANIFEST.MF
     目录           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.xml
     目录           0  2014-08-31 13:00  fullcaledar\WebRoot\fullcalendar\
     文件       29890  2014-08-31 12:25  fullcaledar\WebRoot\fullcalendar\changelog.txt
............此处省略103个文件信息

评论

共有 条评论