package com.edianxun.adp.action;

import java.io.IOException;
import java.io.PrintWriter;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;

public class BaseAction extends ActionSupport{

	/**
	 * @author lhr
	 * @date  2014-4-29
	 */
	private static final long serialVersionUID = 1893151512645757572L;

	/**
	 * get session
	 */
	public Map<String, Object> getSession(){
		return ActionContext.getContext().getSession();
	}
	
	/**
	 * get response by ServletActionContext
	 * @return response
	 */
	public HttpServletResponse getResponse(){
		HttpServletResponse response = ServletActionContext.getResponse();
		response.setContentType("text/html; charset=UTF-8");
		return response;
	}
	
	/**
	 * get request by ServletActionContext
	 * @return request
	 */
	public HttpServletRequest getRequest(){
		return ServletActionContext.getRequest();
	}
	
	/**
	 * open PrintWrite
	 * @return pw
	 */
	public PrintWriter getWriter(){
		HttpServletResponse response = this.getResponse();
		PrintWriter pw = null;
		try {
			pw = response.getWriter();
		} catch (IOException e) {
			e.printStackTrace();
		}
		return pw;
	}
	
	/**
	 * close PrintWrite
	 * @param pw
	 */
	public void close(PrintWriter pw){
		if (pw != null) {
			pw.close();
		}
	}
	
	/**
	 * write json string
	 * @param json
	 */
	public void outJson(String json){
		PrintWriter pw = this.getWriter();
		pw.write(json);
		this.close(pw);
	}
	
}
最近下载更多
educationAAA  LV11 6月23日
17787885952  LV3 2022年5月5日
wanglinddad  LV55 2022年4月14日
王燕燕  LV3 2021年12月23日
afei115  LV4 2021年11月20日
cailizhu833  LV2 2021年8月17日
Vera.Wu  LV2 2021年5月29日
and123456  LV11 2021年4月20日
admin_z  LV22 2021年4月18日
小屁孩  LV7 2021年4月11日
最近浏览更多
isssssss7 10月13日
暂无贡献等级
Alan rui  LV1 8月1日
暂无贡献等级
cccccc1235 5月22日
暂无贡献等级
ruo12138  LV1 5月2日
educationAAA  LV11 4月18日
Gin19960217  LV4 1月19日
aaabbbv 2023年12月17日
暂无贡献等级
WBelong  LV8 2023年12月11日
lt12138  LV2 2023年10月25日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友