资源简介
房屋租赁管理信息系统,项目文档齐全(论文、项目演示PPT、需求分析、可行性分析、软件设计、项目配置),是一个全面的毕业设计项目。
本项目使用开发工具是:MyEclipse+tomcate+sql2005
各模块功能介绍:
1、房屋出租登记输入处理
2、房屋出售登记输入处理
3、房屋登记表修改处理(有输入、取消、确认、修改、删除等功能)
4、房屋查询处理(按地址,面积,使用权查询等)
5、房屋出租情况报表统计处理,房屋出售情况报表统计处理(包含打印功能)
6、房屋出租合同录入和打印功能,房屋出售合同录入和打印功能
7、购买房屋基本常识介绍功能
代码片段和文件信息
package com.action;
/**
* 网站公告
* @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“ “系统维护中请稍后再试!“);
request.getRequestDispatcher(sysdir+“/affiche/index.jsp“).forward(
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2359296 2010-07-07 21:32 房屋租赁管理信息系统\jspesf.mdf
文件 4325376 2010-07-07 21:32 房屋租赁管理信息系统\jspesf_log.ldf
文件 375 2008-04-03 16:32 房屋租赁管理信息系统\readme.txt
文件 31232 2010-06-17 21:32 房屋租赁管理信息系统\系统详细配置方法.doc
文件 1549824 2008-04-09 22:17 房屋租赁管理信息系统\系统演示.ppt
文件 815104 2008-04-09 22:16 房屋租赁管理信息系统\论文.doc
文件 429568 2010-06-17 21:32 房屋租赁管理信息系统\软件设计.doc
文件 20992 2010-06-17 21:30 房屋租赁管理信息系统\可行性研究.doc
文件 21504 2010-06-17 21:31 房屋租赁管理信息系统\需求分析.doc
文件 1221 2008-04-02 21:16 房屋租赁管理信息系统\+程序\源程序\Esf\.project
文件 282 2010-08-23 04:09 房屋租赁管理信息系统\+程序\源程序\Esf\.myme
文件 709 2010-07-07 21:15 房屋租赁管理信息系统\+程序\源程序\Esf\.classpath
文件 2495 2010-07-07 21:30 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\DBO.java
文件 147 2008-04-02 21:13 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\SmartUploadException.java
文件 1614 2008-04-02 21:13 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\SmartFiles.java
文件 27350 2008-04-02 21:13 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\SmartUpload.java
文件 836 2008-04-02 21:13 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\Log.java
文件 1838 2008-04-02 21:13 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\Common.java
文件 792 2008-04-02 21:13 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\MD5.java
文件 533 2008-04-02 21:13 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\Constant.java
文件 1980 2008-04-02 21:13 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\SmartRequest.java
文件 7007 2008-04-02 21:13 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\SmartFile.java
文件 318 2008-04-02 21:13 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\CheckCode.java
文件 650 2008-04-02 21:13 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\Filter.java
文件 7604 2008-04-02 23:25 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\SystemBean.java
文件 7947 2008-04-02 23:26 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\AdminBean.java
文件 10476 2008-04-02 23:26 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\GuestBookBean.java
文件 12932 2008-04-02 23:26 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\AfficheBean.java
文件 13935 2008-04-02 23:25 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\NewsBean.java
文件 11833 2008-04-02 23:25 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\MemberBean.java
............此处省略1503个文件信息
评论
共有 条评论