資源簡介
Java學生管理系統[控制臺版];實現原理:用JDBC連接和操作本機數據庫

代碼片段和文件信息
package?comljh.entity;
public?class?Student?{
private?int?id;
private?String?name;
private?String?job;
private?String?sex;
public?Student(){}
public?Student(int?id?String?name?String?jobString?sex)?{
super();
this.id?=?id;
this.name?=?name;
this.job?=?job;
this.sex?=?sex;
}
public?int?getId()?{
return?id;
}
public?void?setId(int?id)?{
this.id?=?id;
}
public?String?getName()?{
return?name;
}
public?void?setName(String?name)?{
this.name?=?name;
}
public?String?getJob()?{
return?job;
}
public?void?setJob(String?job)?{
this.job?=?job;
}
public?String?getSex()?{
return?sex;
}
public?void?setSex(String?sex)?{
this.sex?=?sex;
}
public?String?toString(){
return?“id:“+id+“姓名:“+name+“職位:“+job+“性別:“+sex;
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????151??2016-03-25?21:57??Readme.txt
?????文件????????480??2016-03-24?21:48??StudentDBTest\.classpath
?????文件????????389??2016-02-23?15:53??StudentDBTest\.project
?????文件????????598??2016-03-24?21:34??StudentDBTest\.settings\org.eclipse.jdt.core.prefs
?????文件???????1612??2016-03-24?21:48??StudentDBTest\bin\comljh\entity\Student.class
?????文件???????4123??2016-03-25?20:44??StudentDBTest\bin\comljh\Test\StudentDAO.class
?????文件???????4403??2016-03-25?18:59??StudentDBTest\bin\comljh\Test\Test.class
?????文件???????1567??2016-03-24?21:48??StudentDBTest\bin\comljh\util\DBUtil.class
?????文件???????1596??2016-03-24?21:48??StudentDBTest\bin\test1\DateTest.class
?????文件???????2396??2016-03-24?21:48??StudentDBTest\bin\test1\Test1.class
?????文件????1536979??2016-02-23?14:08??StudentDBTest\lib\ojdbc14.jar
?????文件????????852??2016-02-24?17:23??StudentDBTest\src\comljh\entity\Student.java
?????文件???????5082??2016-03-25?20:44??StudentDBTest\src\comljh\Test\StudentDAO.java
?????文件???????3652??2016-03-25?18:59??StudentDBTest\src\comljh\Test\Test.java
?????文件???????1326??2016-03-24?21:36??StudentDBTest\src\comljh\util\DBUtil.java
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\bin\comljh\entity
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\bin\comljh\Test
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\bin\comljh\util
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\src\comljh\entity
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\src\comljh\Test
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\src\comljh\util
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\bin\comljh
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\bin\test1
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\src\comljh
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\.settings
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\bin
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\lib
?????目錄??????????0??2016-03-25?21:52??StudentDBTest\src
?????目錄??????????0??2016-03-25?21:52??StudentDBTest
-----------?---------??----------?-----??----
............此處省略2個文件信息
評論
共有 條評論