资源简介
jsp+mysql在页面形成树形结构菜单的程序,值得大家学习
代码片段和文件信息
package dao;
import java.util.Vector;
import java.sql.ResultSet;
import db.DatabaseProxy;
import domain.Dept;
public class DeptDAO
{
public Vector getDeptBySQL(String sql)
{
Vector v = new Vector();
DatabaseProxy db = new DatabaseProxy();
try
{
ResultSet rs = db.GetResultSetBySQL(sql);
while ( rs.next() )
{
Dept dept=new Dept();
dept.setDeptID( rs.getInt(“DeptID“));
dept.setDeptName( rs.getString(“DeptName“) );
dept.setP_deptID( rs.getInt(“P_deptID“));
v.add( dept);
}
}
catch(Exception e)
{
System.out.println(e.toString());
}
return v;
}
public
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 690 2010-09-17 12:53 tree\.classpath
文件 285 2010-09-17 12:49 tree\.myme
文件 1222 2010-09-17 12:49 tree\.project
文件 334 2010-09-17 12:49 tree\.settings\org.eclipse.jdt.core.prefs
文件 980 2010-09-17 13:20 tree\src\dao\DeptDAO.java
文件 3290 2010-09-04 19:39 tree\src\db\Databa
文件 480 2010-09-17 13:05 tree\src\db\DBConnection.java
文件 591 2010-09-17 13:13 tree\src\domain\Dept.java
文件 1041 2010-09-17 13:25 tree\src\servlet\DeptServlet.java
文件 795 2003-04-11 01:33 tree\WebRoot\dtree.css
文件 11852 2010-09-18 09:58 tree\WebRoot\dtree.js
文件 1040 2002-10-17 18:56 tree\WebRoot\img\ba
文件 239 2002-10-17 18:56 tree\WebRoot\img\cd.gif
文件 62 2002-10-19 22:26 tree\WebRoot\img\empty.gif
文件 372 2002-10-19 22:26 tree\WebRoot\img\folder.gif
文件 376 2002-10-19 22:26 tree\WebRoot\img\folderopen.gif
文件 1095 2002-10-17 18:56 tree\WebRoot\img\globe.gif
文件 622 2002-10-19 22:26 tree\WebRoot\img\imgfolder.gif
文件 69 2002-10-17 18:56 tree\WebRoot\img\join.gif
文件 66 2002-10-17 18:56 tree\WebRoot\img\joinbottom.gif
文件 66 2002-10-17 18:56 tree\WebRoot\img\line.gif
文件 86 2002-10-17 18:56 tree\WebRoot\img\minus.gif
文件 85 2002-10-17 18:56 tree\WebRoot\img\minusbottom.gif
文件 633 2002-10-19 22:26 tree\WebRoot\img\musicfolder.gif
文件 861 2002-10-19 22:26 tree\WebRoot\img\nolines_minus.gif
文件 870 2002-10-19 22:26 tree\WebRoot\img\nolines_plus.gif
文件 582 2002-10-19 22:26 tree\WebRoot\img\page.gif
文件 89 2002-10-17 18:56 tree\WebRoot\img\plus.gif
文件 88 2002-10-17 18:56 tree\WebRoot\img\plusbottom.gif
文件 1044 2002-10-19 22:26 tree\WebRoot\img\question.gif
............此处省略39个文件信息
- 上一篇:android/linux读写I2C调试工具
- 下一篇:学生成绩管理系统
评论
共有 条评论