資源簡介
這是一個基于XML操作的學生信息管理小系統,實現了對學生信息的錄入,查找,刪除等操作。可以說是一個簡易的“數據庫”綜合小應用!
代碼片段和文件信息
package?dao;
import?org.w3c.dom.Document;
import?org.w3c.dom.Element;
import?org.w3c.dom.Node;
import?org.w3c.dom.NodeList;
import?utils.xmlUtils;
import?domain.Student;
public?class?StudentDao?{
/**
?*?添加學生信息模塊
?*?@param?student
?*/
public?void?add(Student?student)?{
try?{
Document?document?=?xmlUtils.getDocument();
Element?student_node?=?document.createElement(“student“);
student_node.setAttribute(“examid“?student.getExamid());
student_node.setAttribute(“idcard“?student.getIdcard());
Element?name?=?document.createElement(“name“);
name.setTextContent(student.getName());
Element?location?=?document.createElement(“location“);
location.setTextContent(student.getLocation());
Element?grade?=?document.createElement(“grad
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????301??2016-01-20?15:39??StudentSystem\.classpath
?????文件????????389??2016-01-20?15:39??StudentSystem\.project
?????文件????????598??2016-01-20?15:39??StudentSystem\.settings\org.eclipse.jdt.core.prefs
?????文件???????4343??2016-01-20?19:52??StudentSystem\bin\dao\StudentDao.class
?????文件???????1282??2016-01-20?15:47??StudentSystem\bin\domain\Student.class
?????文件????????604??2016-01-20?20:04??StudentSystem\bin\Student.xm
?????文件???????1806??2016-01-20?16:32??StudentSystem\bin\utils\xm
?????文件???????3173??2016-01-20?17:51??StudentSystem\bin\view\Main.class
?????文件???????4174??2016-01-20?19:52??StudentSystem\src\dao\StudentDao.java
?????文件????????776??2016-01-20?15:47??StudentSystem\src\domain\Student.java
?????文件????????604??2016-01-20?20:04??StudentSystem\src\Student.xm
?????文件???????1130??2016-01-20?16:32??StudentSystem\src\utils\xm
?????文件???????2496??2016-01-20?17:51??StudentSystem\src\view\Main.java
?????目錄??????????0??2016-01-20?15:47??StudentSystem\bin\dao
?????目錄??????????0??2016-01-20?15:41??StudentSystem\bin\domain
?????目錄??????????0??2016-01-20?15:51??StudentSystem\bin\utils
?????目錄??????????0??2016-01-20?16:12??StudentSystem\bin\view
?????目錄??????????0??2016-01-20?15:47??StudentSystem\src\dao
?????目錄??????????0??2016-01-20?15:41??StudentSystem\src\domain
?????目錄??????????0??2016-01-20?15:51??StudentSystem\src\utils
?????目錄??????????0??2016-01-20?16:12??StudentSystem\src\view
?????目錄??????????0??2016-01-20?15:39??StudentSystem\.settings
?????目錄??????????0??2016-01-20?20:05??StudentSystem\bin
?????目錄??????????0??2016-01-20?18:05??StudentSystem\src
?????目錄??????????0??2016-01-20?15:39??StudentSystem
-----------?---------??----------?-----??----
????????????????21676????????????????????25
評論
共有 條評論