1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portal.kernel.servlet;
16  
17  import com.liferay.portal.kernel.util.WebKeys;
18  
19  import java.io.IOException;
20  
21  import javax.servlet.RequestDispatcher;
22  import javax.servlet.ServletContext;
23  import javax.servlet.ServletException;
24  import javax.servlet.http.HttpServletRequest;
25  import javax.servlet.http.HttpServletResponse;
26  import javax.servlet.jsp.PageContext;
27  
28  /**
29   * <a href="PortalIncludeUtil.java.html"><b><i>View Source</i></b></a>
30   *
31   * @author Brian Wing Shun Chan
32   */
33  public class PortalIncludeUtil {
34  
35      public static void include(PageContext pageContext, String path)
36          throws IOException, ServletException {
37  
38          String s = toString(pageContext, path);
39  
40          pageContext.getOut().print(s);
41      }
42  
43      public static String toString(PageContext pageContext, String path)
44          throws IOException, ServletException {
45  
46          HttpServletRequest request =
47              (HttpServletRequest)pageContext.getRequest();
48          HttpServletResponse response =
49              (HttpServletResponse)pageContext.getResponse();
50  
51          ServletContext servletContext = (ServletContext)request.getAttribute(
52              WebKeys.CTX);
53  
54          StringServletResponse stringResponse = new StringServletResponse(
55              response);
56  
57          RequestDispatcher requestDispatcher =
58              servletContext.getRequestDispatcher(path);
59  
60          requestDispatcher.include(request, stringResponse);
61  
62          return stringResponse.getString();
63      }
64  
65  }