资源简介

主要实现企业售后服务信息的维护(增加、删除、修改等)操作,可维护的信息包括产品安装、维修、退换、回访、投诉等一系列活动中需要商家积极投入并及时记录的信息

资源截图

代码片段和文件信息

package com.action;

/**
 * 
 * 留言本
 */

import java.io.IOException;
import java.util.List;

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.GuestBookBean;
import com.bean.SystemBean;
import com.util.Constant;
import com.util.Filter;

public class GuestBookServlet extends HttpServlet {

/**
 * Constructor of the object.
 */
public GuestBookServlet() {
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 {

request.setCharacterEncoding(Constant.CHARACTERENCODING);
response.setContentType(Constant.CONTENTTYPE);
//nikename pic email qq weburl blogurl expressions content
String sysdir = new SystemBean().getDir();
HttpSession session = request.getSession();
String method = request.getParameter(“method“).trim();
GuestBookBean guestBookBean = new GuestBookBean();
if(method.equals(“add“)){//发表留言
String member=(String)session.getAttribute(“member“);
String nikename = Filter.escapeHTMLTags(request.getParameter(“nikename“).trim());
String face =“images/nobody.gif“;
String email = Filter.escapeHTMLTags(request.getParameter(“email“).trim());
String qq = Filter.escapeHTMLTags(request.getParameter(“qq“).trim());
String weburl = Filter.escapeHTMLTags(request.getParameter(“weburl“).trim());
String blogurl = Filter.escapeHTMLTags(request.getParameter(“blogurl“).trim());
String expressions = “images/face/“+Filter.escapeHTMLTags(request.getParameter(“face“).trim())+“.gif“;
String content = Filter.escapeHTMLTags(request.getParameter(“content“).trim());
String ip = request.getRemoteAddr();
 
int guestbook=1;
int flag = guestBoo

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-03-11 19:04  335JSP售后管理系统\
     目录           0  2015-03-11 14:35  335JSP售后管理系统\shffjsp\
     文件         667  2010-05-21 16:44  335JSP售后管理系统\shffjsp\.classpath
     目录           0  2015-03-11 14:35  335JSP售后管理系统\shffjsp\.myeclipse\
     文件         563  2010-05-20 23:35  335JSP售后管理系统\shffjsp\.myhibernatedata
     文件         294  2010-05-21 16:44  335JSP售后管理系统\shffjsp\.mymetadata
     文件        1635  2010-05-20 23:34  335JSP售后管理系统\shffjsp\.project
     文件         273  2010-05-20 23:35  335JSP售后管理系统\shffjsp\.springBeans
     目录           0  2015-03-11 14:35  335JSP售后管理系统\shffjsp\src\
     目录           0  2015-03-11 14:35  335JSP售后管理系统\shffjsp\src\com\
     目录           0  2015-03-11 14:37  335JSP售后管理系统\shffjsp\src\com\action\
     文件        6988  2009-04-28 11:07  335JSP售后管理系统\shffjsp\src\com\action\GuestBookServlet.java
     目录           0  2015-03-11 14:38  335JSP售后管理系统\shffjsp\src\com\bean\
     目录           0  2015-03-11 14:38  335JSP售后管理系统\shffjsp\src\com\util\
     文件        2665  2010-05-20 22:18  335JSP售后管理系统\shffjsp\src\com\util\DBO.java
     文件         650  2009-04-26 00:42  335JSP售后管理系统\shffjsp\src\com\util\Filter.java
     文件         792  2009-04-26 00:42  335JSP售后管理系统\shffjsp\src\com\util\MD5.java
     目录           0  2015-03-11 15:11  335JSP售后管理系统\shffjsp\WebRoot\
     目录           0  2015-03-11 14:38  335JSP售后管理系统\shffjsp\WebRoot\admin\
     文件        1440  2010-05-16 17:09  335JSP售后管理系统\shffjsp\WebRoot\admin\center.jsp
     文件        1095  2010-05-16 17:18  335JSP售后管理系统\shffjsp\WebRoot\admin\down.jsp
     目录           0  2015-03-11 14:35  335JSP售后管理系统\shffjsp\WebRoot\admin\hui\
     文件        4132  2009-04-30 22:28  335JSP售后管理系统\shffjsp\WebRoot\admin\hui\add.jsp
     文件        7692  2009-04-30 22:30  335JSP售后管理系统\shffjsp\WebRoot\admin\hui\index.jsp
     文件        2361  2009-04-30 22:29  335JSP售后管理系统\shffjsp\WebRoot\admin\hui\s.jsp
     文件        3248  2009-04-30 22:29  335JSP售后管理系统\shffjsp\WebRoot\admin\hui\sinfo.jsp
     目录           0  2015-03-11 14:35  335JSP售后管理系统\shffjsp\WebRoot\admin\iframe\
     文件        2301  2009-04-26 00:42  335JSP售后管理系统\shffjsp\WebRoot\admin\iframe\foot.jsp
     文件        1227  2009-04-26 00:42  335JSP售后管理系统\shffjsp\WebRoot\admin\iframe\help.jsp
     文件        9337  2009-04-30 22:48  335JSP售后管理系统\shffjsp\WebRoot\admin\iframe\left.jsp
     文件        3857  2009-04-30 19:23  335JSP售后管理系统\shffjsp\WebRoot\admin\iframe\main.jsp
............此处省略337个文件信息

评论

共有 条评论