📄 shortinfo.java
字号:
package com.wgh.action;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.*;
import com.wgh.actionForm.ShortInfoForm;
import com.wgh.core.ChStr;
import com.wgh.dao.ShortInfoDAO;
public class ShortInfo extends Action{
private ShortInfoDAO shortInfoDAO = null;
private ChStr chStr=new ChStr();
public ShortInfo() {
this.shortInfoDAO = new ShortInfoDAO();
}
public ActionForward execute(ActionMapping mapping,ActionForm form,HttpServletRequest request,HttpServletResponse response){
String action = request.getParameter("action");
System.out.println("获取的查询字符串:" + action);
if (action == null || "".equals(action)) {
return mapping.findForward("error");
}else if ("shortInfoQuery".equals(action)) {
return shortInfoQuery(mapping, form, request,response);
}else if("type".equals(action)){
return type(mapping, form, request,response);
}else if("shortInfoAdd".equals(action)){
return shortInfoAdd(mapping, form, request,response);
}else if("shortInfoDel".equals(action)){
return shortInfoDel(mapping, form, request,response);
} else if("shortInfoModifyQ".equals(action)){
return shortInfoQueryModify(mapping, form, request,response);
}else if("shortInfoModify".equals(action)){
return shortInfoModify(mapping, form, request,response);
}else if("selectShortInfo".equals(action)){
return selectShortInfo(mapping,form,request,response);
}
request.setAttribute("error", "操作失败!");
return mapping.findForward("error");
}
//查询常用短语
private ActionForward shortInfoQuery(ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response) {
request.setAttribute("shortInfoQuery", shortInfoDAO.query(null));
return mapping.findForward("shortInfoQuery");
}
//发送短信时选择常用短语
private ActionForward selectShortInfo(ActionMapping mapping,ActionForm form,
HttpServletRequest request,HttpServletResponse response){
ShortInfoForm shortInfoForm = (ShortInfoForm) form;
shortInfoForm.setTypeID(Integer.parseInt(request.getParameter("id")));
request.setAttribute("selectShortInfo",shortInfoDAO.query(shortInfoForm));
return mapping.findForward("selectShortInfo");
}
//查询类别信息
private ActionForward type(ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response) {
request.setAttribute("typeQuery", shortInfoDAO.queryType(null));
return mapping.findForward("typeQuery");
}
//添加常用短语
private ActionForward shortInfoAdd(ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response) {
ShortInfoForm shortInfoForm = (ShortInfoForm) form;
//此处需要进行中文转码
shortInfoForm.setContent(chStr.toChinese(shortInfoForm.getContent()));
int ret = shortInfoDAO.insert(shortInfoForm);
System.out.println("返回值ret:"+ret);
if (ret == 1) {
return mapping.findForward("shortInfoAdd");
} else if(ret==2){
request.setAttribute("error","该常用短语已经添加!");
return mapping.findForward("error");
}else {
request.setAttribute("error","添加常用短语失败!");
return mapping.findForward("error");
}
}
//修改常用短语的查询
private ActionForward shortInfoQueryModify(ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response) {
ShortInfoForm shortInfoForm = (ShortInfoForm) form;
shortInfoForm.setID(Integer.parseInt(request.getParameter("id")));
request.setAttribute("shortInfoQuery",shortInfoDAO.query(shortInfoForm));
request.setAttribute("typeQuery", shortInfoDAO.queryType(null));
return mapping.findForward("shortInfoQueryModify");
}
//修改常用短语
private ActionForward shortInfoModify(ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response){
ShortInfoForm shortInfoForm=(ShortInfoForm) form;
//此处需要进行中文转码
shortInfoForm.setContent(chStr.toChinese(shortInfoForm.getContent()));
int ret=shortInfoDAO.update(shortInfoForm);
if(ret==0){
request.setAttribute("error","修改常用短语失败!");
return mapping.findForward("error");
}else{
return mapping.findForward("shortInfoModify");
}
}
//删除常用短语
private ActionForward shortInfoDel(ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response) {
ShortInfoForm shortInfoForm = (ShortInfoForm) form;
shortInfoForm.setID(Integer.parseInt(request.getParameter("id")));
int ret = shortInfoDAO.delete(shortInfoForm);
if (ret == 0) {
request.setAttribute("error","删除常用短语失败!");
return mapping.findForward("error");
} else {
return mapping.findForward("shortInfoDel");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -