-
大小: 13.62MB文件類型: .rar金幣: 1下載: 0 次發(fā)布日期: 2023-07-10
- 語言: 數(shù)據(jù)庫
- 標(biāo)簽: 房屋租賃??jsp??
資源簡介
房屋租賃管理信息系統(tǒng),項目文檔齊全(論文、項目演示PPT、需求分析、可行性分析、軟件設(shè)計、項目配置),是一個全面的畢業(yè)設(shè)計項目。
本項目使用開發(fā)工具是:MyEclipse+tomcate+sql2005
各模塊功能介紹:
1、房屋出租登記輸入處理
2、房屋出售登記輸入處理
3、房屋登記表修改處理(有輸入、取消、確認(rèn)、修改、刪除等功能)
4、房屋查詢處理(按地址,面積,使用權(quán)查詢等)
5、房屋出租情況報表統(tǒng)計處理,房屋出售情況報表統(tǒng)計處理(包含打印功能)
6、房屋出租合同錄入和打印功能,房屋出售合同錄入和打印功能
7、購買房屋基本常識介紹功能
代碼片段和文件信息
package?com.action;
/**
?*?網(wǎng)站公告
?*?@author?Administrator
?*
?*/
import?java.io.IOException;
import?javax.servlet.ServletException;
import?javax.servlet.http.HttpServlet;
import?javax.servlet.http.HttpServletRequest;
import?javax.servlet.http.HttpServletResponse;
import?javax.servlet.http.HttpSession;
import?com.bean.AfficheBean;
import?com.bean.SystemBean;
import?com.util.Constant;
import?com.util.Filter;
public?class?AfficheServlet?extends?HttpServlet?{
/**
?*?Constructor?of?the?object.
?*/
public?AfficheServlet()?{
super();
}
/**
?*?Destruction?of?the?servlet.?
?*/
public?void?destroy()?{
super.destroy();?//?Just?puts?“destroy“?string?in?log
//?Put?your?code?here
}
/**
?*?The?doGet?method?of?the?servlet.?
?*
?*?This?method?is?called?when?a?form?has?its?tag?value?method?equals?to?get.
?*?
?*?@param?request?the?request?send?by?the?client?to?the?server
?*?@param?response?the?response?send?by?the?server?to?the?client
?*?@throws?ServletException?if?an?error?occurred
?*?@throws?IOException?if?an?error?occurred
?*/
public?void?doGet(HttpServletRequest?request?HttpServletResponse?response)
throws?ServletException?IOException?{
doPost(requestresponse);
}
/**
?*?The?doPost?method?of?the?servlet.?
?*
?*?This?method?is?called?when?a?form?has?its?tag?value?method?equals?to?post.
?*?
?*?@param?request?the?request?send?by?the?client?to?the?server
?*?@param?response?the?response?send?by?the?server?to?the?client
?*?@throws?ServletException?if?an?error?occurred
?*?@throws?IOException?if?an?error?occurred
?*/
public?void?doPost(HttpServletRequest?request?HttpServletResponse?response)
throws?ServletException?IOException?{
response.setContentType(Constant.CONTENTTYPE);
request.setCharacterEncoding(Constant.CHARACTERENCODING);
String?sysdir?=?new?SystemBean().getDir();
HttpSession?session?=?request.getSession();
try{
String?username2?=?(String)session.getAttribute(“user“);
if(username2?==?null){
request.getRequestDispatcher(“error.jsp“).forward(request?response);
}
else{
AfficheBean?afficheBean?=?new?AfficheBean();
String?method?=?request.getParameter(“method“).trim();
if(method.equals(“addAffiche“)){//增加公告
String?title?=?Filter.escapeHTMLTags(request.getParameter(“title“).trim());
String?content?=?Filter.escapeHTMLTags(request.getParameter(“content“).trim());
String?adder?=?username2;
String?ifhide?=?Filter.escapeHTMLTags(request.getParameter(“ifhide“).trim());
int?flag?=?afficheBean.addAffiche(title?content?adder?ifhide);
if(flag?==?Constant.SUCCESS){
request.setAttribute(“message“?“操作成功!“);
request.getRequestDispatcher(sysdir+“/affiche/index.jsp“).forward(request?response);
}
else{
request.setAttribute(“message“?“系統(tǒng)維護(hù)中請稍后再試!“);
request.getRequestDispatcher(sysdir+“/affiche/index.jsp“).forward(
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????2359296??2010-07-07?21:32??房屋租賃管理信息系統(tǒng)\jspesf.mdf
?????文件????4325376??2010-07-07?21:32??房屋租賃管理信息系統(tǒng)\jspesf_log.ldf
?????文件????????375??2008-04-03?16:32??房屋租賃管理信息系統(tǒng)\readme.txt
?????文件??????31232??2010-06-17?21:32??房屋租賃管理信息系統(tǒng)\系統(tǒng)詳細(xì)配置方法.doc
?????文件????1549824??2008-04-09?22:17??房屋租賃管理信息系統(tǒng)\系統(tǒng)演示.ppt
?????文件?????815104??2008-04-09?22:16??房屋租賃管理信息系統(tǒng)\論文.doc
?????文件?????429568??2010-06-17?21:32??房屋租賃管理信息系統(tǒng)\軟件設(shè)計.doc
?????文件??????20992??2010-06-17?21:30??房屋租賃管理信息系統(tǒng)\可行性研究.doc
?????文件??????21504??2010-06-17?21:31??房屋租賃管理信息系統(tǒng)\需求分析.doc
?????文件???????1221??2008-04-02?21:16??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\.project
?????文件????????282??2010-08-23?04:09??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\.myme
?????文件????????709??2010-07-07?21:15??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\.classpath
?????文件???????2495??2010-07-07?21:30??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\util\DBO.java
?????文件????????147??2008-04-02?21:13??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\util\SmartUploadException.java
?????文件???????1614??2008-04-02?21:13??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\util\SmartFiles.java
?????文件??????27350??2008-04-02?21:13??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\util\SmartUpload.java
?????文件????????836??2008-04-02?21:13??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\util\Log.java
?????文件???????1838??2008-04-02?21:13??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\util\Common.java
?????文件????????792??2008-04-02?21:13??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\util\MD5.java
?????文件????????533??2008-04-02?21:13??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\util\Constant.java
?????文件???????1980??2008-04-02?21:13??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\util\SmartRequest.java
?????文件???????7007??2008-04-02?21:13??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\util\SmartFile.java
?????文件????????318??2008-04-02?21:13??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\util\CheckCode.java
?????文件????????650??2008-04-02?21:13??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\util\Filter.java
?????文件???????7604??2008-04-02?23:25??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\bean\SystemBean.java
?????文件???????7947??2008-04-02?23:26??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\bean\AdminBean.java
?????文件??????10476??2008-04-02?23:26??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\bean\GuestBookBean.java
?????文件??????12932??2008-04-02?23:26??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\bean\AfficheBean.java
?????文件??????13935??2008-04-02?23:25??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\bean\NewsBean.java
?????文件??????11833??2008-04-02?23:25??房屋租賃管理信息系統(tǒng)\+程序\源程序\Esf\src\com\bean\MemberBean.java
............此處省略1503個文件信息
評論
共有 條評論