-
大小: 498KB文件類型: .rar金幣: 2下載: 0 次發(fā)布日期: 2021-05-20
- 語言: 數(shù)據(jù)庫
- 標(biāo)簽:
資源簡介
DTree動態(tài)展示樹形菜單.rar
本工程使用dTree組件實現(xiàn)樹形菜單的展示
有靜態(tài)樹形菜單和動態(tài)(從數(shù)據(jù)庫獲取數(shù)據(jù))樹形菜單展示兩種
數(shù)據(jù)庫連接采用簡單的類實現(xiàn)
數(shù)據(jù)位MySQL(5.0.21),數(shù)據(jù)庫創(chuàng)建腳本為dtree.sql

代碼片段和文件信息
package?com.zjx.dtree.dao;
import?java.sql.*;
public?class?DatabaseConnection?{
private?Connection?conn?=?null;
private?final?String?DRIVER?=?“com.mysql.jdbc.Driver“;
private?final?String?URL?=?“jdbc:mysql://127.0.0.1:3306/test?user=root&password=rootroot&useUnicode=true&characterEncoding=utf8“;
public?DatabaseConnection()?{
try?{
Class.forName(DRIVER);
this.conn?=?DriverManager.getConnection(URL);
}?catch?(Exception?ex)?{
ex.printStackTrace();
}
}
//?取得數(shù)據(jù)庫
public?Connection?getConnection()?{
return?this.conn;
}
//?關(guān)閉連接
public?void?close()?{
try?{
this.conn.close();
}?catch?(Exception?e)?{
e.printStackTrace();
}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????455??2011-01-20?13:57??DTree\.classpath
?????文件????????288??2011-01-20?13:54??DTree\.myme
?????文件???????1411??2011-01-20?13:55??DTree\.project
?????文件????????500??2011-01-20?13:54??DTree\.settings\.jsdtscope
?????文件????????330??2011-01-20?13:54??DTree\.settings\org.eclipse.jdt.core.prefs
?????文件?????????49??2011-01-20?13:54??DTree\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件??????????6??2011-01-20?13:54??DTree\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????文件????????726??2011-01-21?11:16??DTree\src\com\zjx\dtree\dao\Databa
?????文件???????1428??2011-01-21?11:16??DTree\src\com\zjx\dtree\dao\SysMenuDao.java
?????文件???????1311??2011-01-21?11:18??DTree\src\com\zjx\dtree\servlet\DTreeServlet.java
?????文件???????1414??2011-01-21?11:10??DTree\src\com\zjx\dtree\util\DTreeUtil.java
?????文件???????1285??2011-01-21?11:14??DTree\src\com\zjx\dtree\util\SysMenu.java
?????文件????????820??2011-01-21?11:11??DTree\WebRoot\console.jsp
?????文件????????827??2011-01-21?11:11??DTree\WebRoot\console_static.jsp
?????文件????????795??2011-01-20?13:54??DTree\WebRoot\dtree.css
?????文件??????12410??2011-01-20?13:54??DTree\WebRoot\dtree.js
?????文件?????????22??2011-01-21?11:11??DTree\WebRoot\header.jsp
?????文件???????1040??2011-01-20?13:54??DTree\WebRoot\img\ba
?????文件????????239??2011-01-20?13:54??DTree\WebRoot\img\cd.gif
?????文件?????????62??2011-01-20?13:54??DTree\WebRoot\img\empty.gif
?????文件????????372??2011-01-20?13:54??DTree\WebRoot\img\folder.gif
?????文件????????376??2011-01-20?13:54??DTree\WebRoot\img\folderopen.gif
?????文件???????1095??2011-01-20?13:54??DTree\WebRoot\img\globe.gif
?????文件????????622??2011-01-20?13:54??DTree\WebRoot\img\imgfolder.gif
?????文件?????????69??2011-01-20?13:54??DTree\WebRoot\img\join.gif
?????文件?????????66??2011-01-20?13:54??DTree\WebRoot\img\joinbottom.gif
?????文件?????????66??2011-01-20?13:54??DTree\WebRoot\img\line.gif
?????文件?????????86??2011-01-20?13:54??DTree\WebRoot\img\minus.gif
?????文件?????????85??2011-01-20?13:54??DTree\WebRoot\img\minusbottom.gif
?????文件????????633??2011-01-20?13:54??DTree\WebRoot\img\musicfolder.gif
............此處省略52個文件信息
- 上一篇:JDBC與MySQL教程.txt
- 下一篇:oracle單點登錄demo
評論
共有 條評論