checkclientnameaction.java

来自「上一上传oa系统漏掉web-inf文件夹」· Java 代码 · 共 87 行

JAVA
87
字号
/*
 * 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;

/**
 * MyEclipse Struts Creation date: 09-12-2007
 * 
 * XDoclet definition:
 * 
 * @struts.action validate="true"
 */
public class CheckClientNameAction extends Action {
	/*
	 * Generated Methods
	 */

	/**
	 * Method execute
	 * 
	 * @param mapping
	 * @param form
	 * @param request
	 * @param response
	 * @return ActionForward
	 */
	private ClientInfo clientInfo;

	private ClientInfoDAOImpl clientInfoDao;

	public void setClientInfoDao(ClientInfoDAOImpl clientInfoDao) {
		this.clientInfoDao = clientInfoDao;
	}

	public void setClientInfo(ClientInfo clientInfo) {
		this.clientInfo = clientInfo;
	}

	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response) throws UnsupportedEncodingException {
		// TODO Auto-generated method stub
		String value1 = "";

		value1 = new String(request.getParameter("value1").getBytes(
				"iso-8859-1"), "gbk");
		System.out.println(value1);
		PrintWriter out = null;

		try {
			out = response.getWriter();
		} catch (IOException e) {
			// TODO 自动生成 catch 块
			e.printStackTrace();
		}

		clientInfo = clientInfoDao.findClientInfoByClientName(value1);
		ArrayList<ClientInfo> list = clientInfoDao
				.findAllClientInfoByClientName(value1);
		if (clientInfo != null) {
			out.print(2);
		} else {
			if (list.size() > 0) {
				out.print(1);
			} else {
				out.print(0);
			}
		}
		return null;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?