当前位置: 首页>>代码示例>>Java>>正文


Java HttpServletRequest.getAttributeNames方法代码示例

本文整理汇总了Java中javax.servlet.http.HttpServletRequest.getAttributeNames方法的典型用法代码示例。如果您正苦于以下问题:Java HttpServletRequest.getAttributeNames方法的具体用法?Java HttpServletRequest.getAttributeNames怎么用?Java HttpServletRequest.getAttributeNames使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.servlet.http.HttpServletRequest的用法示例。


在下文中一共展示了HttpServletRequest.getAttributeNames方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: showRequestAttributes

import javax.servlet.http.HttpServletRequest; //导入方法依赖的package包/类
/**
 *  Displays the request attributes for debugging..
 *
 * @param  request  Description of the Parameter
 */
private void showRequestAttributes(HttpServletRequest request) {
	if (debug) {
		prtln("Request Attributes");
		for (Enumeration e = request.getAttributeNames(); e.hasMoreElements(); ) {
			String attribute = (String) e.nextElement();
			Object o = request.getAttribute(attribute);
			if (o instanceof String) {
				System.out.println("\t" + attribute + ": " + (String) o);
			}
			else {
				System.out.println("\t" + attribute + " (" + o.getClass().getName() + ")");
				try {
					System.out.println("\t\t" + o.toString());
				} catch (Throwable t) {}
			}
		}
	}
}
 
开发者ID:NCAR,项目名称:joai-project,代码行数:24,代码来源:SchemEditUtils.java

示例2: ServletRequestCopy

import javax.servlet.http.HttpServletRequest; //导入方法依赖的package包/类
public ServletRequestCopy(HttpServletRequest request) {
	this.servletPath = request.getServletPath();
	this.contextPath = request.getContextPath();
	this.pathInfo = request.getPathInfo();
	this.requestUri = request.getRequestURI();
	this.requestURL = request.getRequestURL();
	this.method = request.getMethod();
	this.serverName = request.getServerName();
	this.serverPort = request.getServerPort();
	this.protocol = request.getProtocol();
	this.scheme = request.getScheme();
	
	
	/*
	 * have to comment out below two lines as otherwise web socket will
	 * report UnSupportedOperationException upon connection
	 */
	//this.characterEncoding = request.getCharacterEncoding();
	//this.contentType = request.getContentType();
	//this.requestedSessionId = request.getRequestedSessionId();
	this.characterEncoding = null;
	this.contentType = null;
	this.requestedSessionId = null;
	
	this.locale = request.getLocale();
	this.locales = request.getLocales();
	this.isSecure = request.isSecure();
	this.remoteUser = request.getRemoteUser();
	this.remoteAddr = request.getRemoteAddr();
	this.remoteHost = request.getRemoteHost();
	this.remotePort = request.getRemotePort();
	this.localAddr = request.getLocalAddr();
	this.localName = request.getLocalName();
	this.localPort = request.getLocalPort();
	this.pathTranslated = request.getPathTranslated();
	this.principal = request.getUserPrincipal();

	HttpSession session = request.getSession(true);
	httpSession = new HttpSessionCopy(session);

	String s;
	Enumeration<String> e = request.getHeaderNames();
	while (e != null && e.hasMoreElements()) {
		s = e.nextElement();
		Enumeration<String> headerValues = request.getHeaders(s);
		this.headers.put(s, headerValues);
	}

	e = request.getAttributeNames();
	while (e != null && e.hasMoreElements()) {
		s = e.nextElement();
		attributes.put(s, request.getAttribute(s));
	}

	e = request.getParameterNames();
	while (e != null && e.hasMoreElements()) {
		s = e.nextElement();
		parameters.put(s, request.getParameterValues(s));
	}
}
 
开发者ID:jmfgdev,项目名称:gitplex-mit,代码行数:61,代码来源:ServletRequestCopy.java

示例3: printAttributes

import javax.servlet.http.HttpServletRequest; //导入方法依赖的package包/类
/**
 * Print attributes of a HTTP request for debug purposes
 *
 * @param httpRequest
 */
public static void printAttributes(HttpServletRequest httpRequest) {

    System.out.println();
    System.out.println("Attributes of: " + httpRequest);
    Enumeration<String> names = httpRequest.getAttributeNames();
    while (names.hasMoreElements()) {
        String name = names.nextElement();
        Object value = httpRequest.getAttribute(name);
        System.out.println("\t # Name: " + name);
        System.out.println("\t   Value: " + value);
    }
}
 
开发者ID:remipassmoilesel,项目名称:simple-hostel-management,代码行数:18,代码来源:Utils.java

示例4: getIlluminatiProcId

import javax.servlet.http.HttpServletRequest; //导入方法依赖的package包/类
@Deprecated
private void getIlluminatiProcId (HttpServletRequest request) {
    final Enumeration<String> enumeration = request.getAttributeNames();

    while (enumeration.hasMoreElements()) {
        final String key = enumeration.nextElement();
        final String value = request.getAttribute(key).toString();

        if ("illuminatiProcId".equals(key)) {
            this.illuminatiProcId = value;
            break;
        }
    }
}
 
开发者ID:LeeKyoungIl,项目名称:illuminati,代码行数:15,代码来源:RequestHeaderModel.java

示例5: setRequest

import javax.servlet.http.HttpServletRequest; //导入方法依赖的package包/类
/**
 * Set the request that we are wrapping.
 *
 * @param request The new wrapped request
 */
void setRequest(HttpServletRequest request) {

    super.setRequest(request);

    // Initialize the attributes for this request
    synchronized (attributes) {
        attributes.clear();
        Enumeration names = request.getAttributeNames();
        while (names.hasMoreElements()) {
            String name = (String) names.nextElement();
            if( ! ( Globals.REQUEST_URI_ATTR.equals(name) ||
                    Globals.SERVLET_PATH_ATTR.equals(name) ) ) {
                Object value = request.getAttribute(name);
                attributes.put(name, value);
            }
        }
    }

    // Initialize the parameters for this request
    synchronized (parameters) {
        parameters = copyMap(request.getParameterMap());
    }

    // Initialize the path elements for this request
    contextPath = request.getContextPath();
    pathInfo = request.getPathInfo();
    queryString = request.getQueryString();
    requestURI = request.getRequestURI();
    servletPath = request.getServletPath();

}
 
开发者ID:c-rainstorm,项目名称:jerrydog,代码行数:37,代码来源:ApplicationHttpRequest.java

示例6: testNonDefaultAttributes

import javax.servlet.http.HttpServletRequest; //导入方法依赖的package包/类
public void testNonDefaultAttributes() throws Exception {
    WebRequest wr = new GetMethodWebRequest( "http://localhost/simple" );
    HttpServletRequest request = new ServletUnitHttpRequest( NULL_SERVLET_REQUEST, wr, new ServletUnitContext(), new Hashtable(), NO_MESSAGE_BODY );
    Object value = new Integer(1);

    request.setAttribute( "one", value );

    assertEquals( "attribute one", value, request.getAttribute( "one" ) );

    Enumeration names = request.getAttributeNames();
    assertTrue( "attribute enumeration should not be empty", names.hasMoreElements() );
    assertEquals( "contents in enumeration", "one", names.nextElement() );
    assertTrue( "attribute enumeration should now be empty", !names.hasMoreElements() );
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:15,代码来源:HttpServletRequestTest.java


注:本文中的javax.servlet.http.HttpServletRequest.getAttributeNames方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。