资源简介
房屋租赁管理信息系统,含有PPT,系统配置说明,全部资源
代码片段和文件信息
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(
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 709 2013-12-20 11:01 房屋租赁管理信息系统\+程序\源程序\Esf\.classpath
文件 282 2013-12-20 10:01 房屋租赁管理信息系统\+程序\源程序\Esf\.myme
文件 1221 2013-12-20 18:01 房屋租赁管理信息系统\+程序\源程序\Esf\.project
文件 5644 2013-12-20 13:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\action\AfficheServlet.java
文件 5760 2013-12-20 09:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\action\CommonServlet.java
文件 7302 2013-12-20 12:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\action\GuestBookServlet.java
文件 6522 2013-12-20 11:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\action\MemberManageServlet.java
文件 7401 2013-12-20 09:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\action\NewsServlet.java
文件 7947 2013-12-20 19:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\AdminBean.java
文件 12932 2013-12-20 14:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\AfficheBean.java
文件 10476 2013-12-20 10:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\GuestBookBean.java
文件 23243 2013-12-20 14:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\HouseBean.java
文件 11833 2013-12-20 13:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\MemberBean.java
文件 16718 2013-12-20 19:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\MemberManageBean.java
文件 13935 2013-12-20 09:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\NewsBean.java
文件 7604 2013-12-20 16:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\bean\SystemBean.java
文件 318 2013-12-20 11:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\CheckCode.java
文件 1838 2013-12-20 17:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\Common.java
文件 533 2013-12-20 11:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\Constant.java
文件 2505 2013-12-20 15:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\DBO.java
文件 650 2013-12-20 14:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\Filter.java
文件 836 2013-12-20 14:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\Log.java
文件 792 2013-12-20 18:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\MD5.java
文件 7007 2013-12-20 16:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\SmartFile.java
文件 1614 2013-12-20 09:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\SmartFiles.java
文件 1980 2013-12-20 16:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\SmartRequest.java
文件 27350 2013-12-20 13:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\SmartUpload.java
文件 147 2013-12-20 09:01 房屋租赁管理信息系统\+程序\源程序\Esf\src\com\util\SmartUploadException.java
文件 835 2013-12-20 12:01 房屋租赁管理信息系统\+程序\源程序\Esf\WebRoot\admin\affiche\default.jsp
文件 4057 2013-12-20 09:01 房屋租赁管理信息系统\+程序\源程序\Esf\WebRoot\admin\affiche\edit.jsp
............此处省略1510个文件信息
- 上一篇:图书自动录入系统
- 下一篇:springmvc代理经销商管理系统
相关资源
- 北大暑期ACM训练营ppt
- 大学物理PPT+全章节题库.rar
- 计算机网络PPT(王道).rar
- 基于旅游网站的设计与实现源码
- 哈工大计算机网络ppt,mooc精品课程
- 精品PPT炼成记
- 设计模式那点事_软件小蜜
- Eric Xing:分布式机器学习系统、算法
- 华为云数据中心解决方案.pptx
- nodejs配套PPT
- 李宏毅——深度学习ppt
- PPT演绎故事化设计
- hadoop炼数成金完整版教学ppt
- 北航模电ppt 珍贵
- 软件项目管理案例教程-韩万江-ppt
- 思科ASR系列PPT
- 计算机组成原理课件 ppt 完整
- 数字电子基础基础第六版阎石ppt
- 邹博BAT笔试面试算法班PPT
- 飞机大战3.0工程PPT视频.rar
- 服装租赁系统
- 高频电子线路
- 信号与系统 郑君里 第三版 PPT
- 第五版数字通信ppt汇总
- VisualLisp程序设计AutoCAD2010与课件PPT一
- 《医学图像处理与分析》第二版--罗述
- 电子科技大学-数字通信课件整理版
- 传感器课件 ppt
- 2015 年全国大学生计算机设计大赛微课
- 概率论和数理统计浙大慕课.pdf
评论
共有 条评论