資源簡介
第一章 系統分析
1.1 系統目標
電子詞典的設計主要是用于幫助用戶查找一些不懂的單詞。以確定意思,再加上一些相關的擴展功能。
1. 支持用戶查詢需求,能夠實現英漢互相翻譯的功能
2. 支持用戶自定義詞庫能夠使用戶對詞庫進行操作,以便使用戶獲得更多的資料。
3. 加入輕松背單詞功能,是用戶對單詞有一個及時全面的復習環境。

代碼片段和文件信息
package?com.ecitz.words.common;
import?java.io.Serializable;
import?java.util.List;
public?class?PageData?implements?Serializable{
private?int?currentPage;//當前頁
private?int?totalRecords;//總共有幾條記錄
private?int?pageSize=10;//一頁有幾條記錄
private?int?totalPage;//共有多少頁
private?List?list;//當前頁面需要顯示的信息
public?int?getCurrentPage()?{
return?currentPage;
}
public?void?setCurrentPage(int?currentPage)?{
this.currentPage?=?currentPage;
}
public?int?getTotalRecords()?{
return?totalRecords;
}
public?void?setTotalRecords(int?totalRecords)?{
this.totalRecords?=?totalRecords;
}
public?int?getPageSize()?{
return?pageSize;
}
public?void?setPageSize(int?pageSize)?{
this.pageSize?=?pageSize;
}
public?int?getTotalPage()?{
return?totalPage;
}
public?void?setTotalPage(int?totalPage)?{
this.totalPage?=?totalPage;
}
public?List?getList()?{
return?list;
}
public?void?setList(List?list)?{
this.list?=?list;
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????1756??2011-05-01?15:35??dictionary\.classpath
?????文件????????303??2011-05-01?15:52??dictionary\.myme
?????文件???????1416??2011-05-01?17:40??dictionary\.project
?????文件????????500??2011-05-01?15:01??dictionary\.settings\.jsdtscope
?????文件?????????49??2011-05-01?15:01??dictionary\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件??????????6??2011-05-01?15:01??dictionary\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????文件???????1604??2011-05-01?15:22??dictionary\conf\c3p0.properties
?????文件?????????68??2011-05-01?16:14??dictionary\conf\dao.properties
?????文件????????590??2010-08-18?10:59??dictionary\conf\jdbc_template.properties
?????文件????????550??2011-05-01?15:22??dictionary\conf\log4j.properties
?????文件????????127??2011-05-01?16:16??dictionary\conf\service.properties
?????文件???????1035??2011-05-01?17:07??dictionary\src\com\ecitz\words\common\PageData.java
?????文件???????1657??2011-05-01?18:08??dictionary\src\com\ecitz\words\dao\impl\WordsDaoImpl.java
?????文件????????579??2011-05-01?16:52??dictionary\src\com\ecitz\words\dao\WordsDao.java
?????文件???????1460??2011-05-02?00:08??dictionary\src\com\ecitz\words\pojo\Words.java
?????文件???????1008??2011-05-01?16:57??dictionary\src\com\ecitz\words\service\impl\WordsServiceImpl.java
?????文件????????588??2011-05-01?16:58??dictionary\src\com\ecitz\words\service\WordsService.java
?????文件???????1071??2011-05-01?22:12??dictionary\src\com\ecitz\words\servlet\SearchWordsServlet.java
?????文件????????807??2011-05-01?17:10??dictionary\test\com\ecitz\words\test\WordsServiceTests.java
?????文件???????1021??2011-05-01?21:37??dictionary\WebRoot\images\bg2.gif
?????文件???????3801??2011-05-01?21:37??dictionary\WebRoot\images\bg_nav.gif
?????文件?????????70??2011-05-01?21:37??dictionary\WebRoot\images\comment.gif
?????文件??????17597??2011-05-01?21:37??dictionary\WebRoot\images\footer2.gif
?????文件???????6186??2011-05-01?21:37??dictionary\WebRoot\images\header.gif
?????文件????????229??2011-05-01?21:37??dictionary\WebRoot\images\hr.gif
?????文件???????1553??2011-05-01?23:39??dictionary\WebRoot\images\indicator.gif
?????文件???????1207??2011-05-01?21:37??dictionary\WebRoot\images\input.gif
?????文件????????824??2011-05-01?21:37??dictionary\WebRoot\images\li.gif
?????文件??????48063??2011-05-01?21:37??dictionary\WebRoot\images\prefooter.gif
?????文件??????13312??2011-05-01?21:37??dictionary\WebRoot\images\Thumbs.db
............此處省略80個文件信息
- 上一篇:bbs論壇源代碼
- 下一篇:java學生管理系統詳細論文
評論
共有 條評論