📄 addclientinfoaction.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.oa.crm.myClientManager.action;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import com.oa.crm.db.ClientInfo;
import com.oa.crm.db.ClientInfoDAOImpl;
import com.oa.crm.form.ClientInfoForm;
/**
* MyEclipse Struts
* Creation date: 08-24-2007
*
* XDoclet definition:
* @struts.action validate="true"
*/
public class AddClientInfoAction extends Action {
/*
* Generated Methods
*/
/**
* Method execute
* @param mapping
* @param form
* @param request
* @param response
* @return ActionForward
*/
private ClientInfo clientInfo;
private ClientInfoDAOImpl clientInfoDao;
private ClientInfo clientInfo1;
public void setClientInfo1(ClientInfo clientInfo1) {
this.clientInfo1 = clientInfo1;
}
public void setClientInfo(ClientInfo clientInfo) {
this.clientInfo = clientInfo;
}
public void setClientInfoDao(ClientInfoDAOImpl clientInfoDao) {
this.clientInfoDao = clientInfoDao;
}
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
ClientInfoForm clientInfoForm = (ClientInfoForm) form;
clientInfo.setEmpId(request.getSession().getAttribute("empId").toString());
try {
response.setCharacterEncoding("utf-8");
request.setCharacterEncoding("utf-8");
} catch (UnsupportedEncodingException e) {
// TODO 自动生成 catch 块
e.printStackTrace();
}
clientInfo.setClientName(clientInfoForm.getClientName());
clientInfo.setAddress(clientInfoForm.getAddress());
clientInfo.setCalling(clientInfoForm.getCalling());
clientInfo.setClientState(clientInfoForm.getClientState());
clientInfo.setEmail(clientInfoForm.getEmail());
clientInfo.setFax(clientInfoForm.getFax());
clientInfo.setLinkman(clientInfoForm.getLinkman());
clientInfo.setMobilePhone(clientInfoForm.getMobilePhone());
clientInfo.setMsn(clientInfoForm.getMsn());
clientInfo.setPostalcode(clientInfoForm.getPostalcode());
clientInfo.setQq(clientInfoForm.getQq());
clientInfo.setRemark(clientInfoForm.getRemark());
clientInfo.setRivetPhone(clientInfoForm.getRivetPhone());
clientInfo.setServerMode(clientInfoForm.getServerMode());
clientInfo.setNetworkId(clientInfoForm.getNetworkId());
clientInfo.setSize(clientInfoForm.getSize());
PrintWriter out = null;
try {
out = response.getWriter();
if(isTokenValid(request, true)){
clientInfoDao.addClientInfo(clientInfo);
}else{
saveToken(request);
}
out.print("<script>");
out.print("alert('添加成功!');");
out.print("document.location.href = 'showOneEmpAllClientInfo.do';");
out.print("</script>");
out.flush();
} catch (IOException e) {
// TODO 自动生成 catch 块
e.printStackTrace();
}
return null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -