本文整理匯總了Java中javax.servlet.jsp.PageContext.getServletContext方法的典型用法代碼示例。如果您正苦於以下問題:Java PageContext.getServletContext方法的具體用法?Java PageContext.getServletContext怎麽用?Java PageContext.getServletContext使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.servlet.jsp.PageContext
的用法示例。
在下文中一共展示了PageContext.getServletContext方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: initialize
import javax.servlet.jsp.PageContext; //導入方法依賴的package包/類
public final void initialize(PageContext pagecontext)
throws ServletException
{
m_application = pagecontext.getServletContext();
m_request = (HttpServletRequest)pagecontext.getRequest();
m_response = (HttpServletResponse)pagecontext.getResponse();
}
示例2: createInitParamMap
import javax.servlet.jsp.PageContext; //導入方法依賴的package包/類
/**
*
* Creates the Map that maps init parameter name to single init
* parameter value.
**/
public static Map<String, String> createInitParamMap(PageContext pContext)
{
final ServletContext context = pContext.getServletContext ();
return new EnumeratedMap<String, String> ()
{
public Enumeration<String> enumerateKeys ()
{
return context.getInitParameterNames ();
}
public String getValue (Object pKey)
{
if (pKey instanceof String) {
return context.getInitParameter ((String) pKey);
}
else {
return null;
}
}
public boolean isMutable ()
{
return false;
}
};
}