Java tutorial
/** * Copyright (c) 2005-2010 springside.org.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * * $Id: Struts2Utils.java 1211 2010-09-10 16:20:45Z calvinxiu $ */ package com.weixin.core.util; import java.io.IOException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.apache.commons.lang.StringUtils; import org.apache.struts2.ServletActionContext; /** * Struts2. * * ?Request/Response/Sessionjsp/freemaker. * */ public class Struts2Utils { // -- header ? --// private static final String HEADER_ENCODING = "encoding"; private static final String HEADER_NOCACHE = "no-cache"; private static final String DEFAULT_ENCODING = "UTF-8"; private static final boolean DEFAULT_NOCACHE = true; // -- ?Request/Response/Session --// /** * ?HttpSession. */ public static HttpSession getSession() { return ServletActionContext.getRequest().getSession(); } /** * ?HttpSession. */ public static HttpSession getSession(boolean isNew) { return ServletActionContext.getRequest().getSession(isNew); } /** * ?HttpSessionAttribute. */ public static Object getSessionAttribute(String name) { HttpSession session = getSession(false); return (session != null ? session.getAttribute(name) : null); } /** * ?HttpRequest. */ public static HttpServletRequest getRequest() { return ServletActionContext.getRequest(); } /** * ?HttpRequestParameter. */ public static String getParameter(String name) { return getRequest().getParameter(name); } /** * ?HttpResponse. */ public static HttpServletResponse getResponse() { return ServletActionContext.getResponse(); } // -- jsp/freemaker --// /** * . * * eg. render("text/plain", "hello", "encoding:GBK"); render("text/plain", * "hello", "no-cache:false"); render("text/plain", "hello", "encoding:GBK", * "no-cache:false"); * * @param headers * ??header??"encoding:""no-cache:",UTF-8true. */ public static void render(final String contentType, final String content, final String... headers) { HttpServletResponse response = initResponseHeader(contentType, headers); try { response.getWriter().write(content); response.getWriter().flush(); } catch (IOException e) { throw new RuntimeException(e.getMessage(), e); } } /** * . * * @see #render(String, String, String...) */ public static void renderText(final String text, final String... headers) { render(ServletUtils.TEXT_TYPE, text, headers); } /** * HTML. * * @see #render(String, String, String...) */ public static void renderHtml(final String html, final String... headers) { render(ServletUtils.HTML_TYPE, html, headers); } /** * XML. * * @see #render(String, String, String...) */ public static void renderXml(final String xml, final String... headers) { render(ServletUtils.XML_TYPE, xml, headers); } /** * JSON. * * @param jsonString * json. * @see #render(String, String, String...) */ public static void renderJson(final String jsonString, final String... headers) { render(ServletUtils.JSON_TYPE, jsonString, headers); } /** * ?contentTypeheaders. */ private static HttpServletResponse initResponseHeader(final String contentType, final String... headers) { // ?headers? String encoding = DEFAULT_ENCODING; boolean noCache = DEFAULT_NOCACHE; HttpServletResponse response = ServletActionContext.getResponse(); for (String header : headers) { String headerName = StringUtils.substringBefore(header, ":"); String headerValue = StringUtils.substringAfter(header, ":"); if (StringUtils.equalsIgnoreCase(headerName, HEADER_ENCODING)) { encoding = headerValue; } else if (StringUtils.equalsIgnoreCase(headerName, HEADER_NOCACHE)) { noCache = Boolean.parseBoolean(headerValue); } else if (StringUtils.equalsIgnoreCase(headerName, "Cache-Control") || StringUtils.equalsIgnoreCase(headerName, "Pragma")) { response.setHeader(headerName, headerValue); noCache = false; } else { throw new IllegalArgumentException(headerName + "??header"); } } // headers? String fullContentType = contentType + ";charset=" + encoding; response.setContentType(fullContentType); response.setHeader("Pragma:", "public"); if (noCache) { ServletUtils.setDisableCacheHeader(response); } return response; } }