?? replyservlet.java
字號:
package com.wxpn.tutorial.servlet;
import java.io.IOException;
import java.util.Date;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet implementation class for Servlet: ReplyServlet
*/
public class ReplyServlet extends javax.servlet.http.HttpServlet implements
javax.servlet.Servlet {
/*
* (non-Java-doc)
*
* @see javax.servlet.http.HttpServlet#HttpServlet()
*/
public ReplyServlet() {
super();
}
/*
* (non-Java-doc)
*
* @see javax.servlet.http.HttpServlet#doPost(HttpServletRequest request,
* HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
String title = request.getParameter("MB_TITLE");
String content = request.getParameter("MB_CONTENT");
String fatherid = request.getParameter("fatherid");
title =Encoder.returnToBr(title);
content =Encoder.returnToBr(content);
String face=request.getParameter("face");
BBSMsg msg = new BBSMsg();
msg.setAuthor(request.getSession().getAttribute("userName").toString());
msg.setItem_title(title);
msg.setItem_content(content);
msg.setCompose_date(new Date());
msg.setFace(Integer.parseInt(face));
BBSMsgMgr mgr = new BBSMsgMgr();
int i = mgr.reply(msg,Integer.parseInt(fatherid));
if (i == 1) {
// 撰寫成功
response.sendRedirect("index.jsp");
} else {
// 否則,表明撰寫留言失敗:
request.setAttribute("error", "<h1>撰寫留言失敗!</h1>");
try {
request.getRequestDispatcher("/error.jsp").forward(request,
response);
} catch (Throwable t) {
getServletContext().log(t.getMessage());
}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -