org.simpleframework.http.Request.getNames()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(5.6k)|赞(0)|评价(0)|浏览(307)

本文整理了Java中org.simpleframework.http.Request.getNames方法的一些代码示例,展示了Request.getNames的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.getNames方法的具体详情如下:
包路径:org.simpleframework.http.Request
类名称:Request
方法名:getNames

Request.getNames介绍

暂无

代码示例

代码示例来源:origin: jersey/jersey

  1. @Override
  2. public void handle(final Request request, final Response response) {
  3. final ResponseWriter responseWriter = new ResponseWriter(response, scheduler);
  4. final URI baseUri = getBaseUri(request);
  5. final URI requestUri = getRequestUri(request, baseUri);
  6. try {
  7. final ContainerRequest requestContext = new ContainerRequest(baseUri, requestUri,
  8. request.getMethod(), getSecurityContext(request), new MapPropertiesDelegate());
  9. requestContext.setEntityStream(request.getInputStream());
  10. for (final String headerName : request.getNames()) {
  11. requestContext.headers(headerName, request.getValue(headerName));
  12. }
  13. requestContext.setWriter(responseWriter);
  14. requestContext.setRequestScopedInitializer(injectionManager -> {
  15. injectionManager.<Ref<Request>>getInstance(RequestTYPE).set(request);
  16. injectionManager.<Ref<Response>>getInstance(ResponseTYPE).set(response);
  17. });
  18. appHandler.handle(requestContext);
  19. } catch (final Exception ex) {
  20. throw new RuntimeException(ex);
  21. } finally {
  22. if (!responseWriter.isSuspended()) {
  23. close(response);
  24. }
  25. }
  26. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * This method is used to get a <code>List</code> of the names
  3. * for the headers. This will provide the original names for the
  4. * HTTP headers for the message. Modifications to the provided
  5. * list will not affect the header, the list is a simple copy.
  6. *
  7. * @return this returns a list of the names within the header
  8. */
  9. public List<String> getNames() {
  10. return request.getNames();
  11. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * This method is used to get a <code>List</code> of the names
  3. * for the headers. This will provide the original names for the
  4. * HTTP headers for the message. Modifications to the provided
  5. * list will not affect the header, the list is a simple copy.
  6. *
  7. * @return this returns a list of the names within the header
  8. */
  9. public List<String> getNames() {
  10. return request.getNames();
  11. }

代码示例来源:origin: org.simpleframework/simple

  1. /**
  2. * This method is used to get a <code>List</code> of the names
  3. * for the headers. This will provide the original names for the
  4. * HTTP headers for the message. Modifications to the provided
  5. * list will not affect the header, the list is a simple copy.
  6. *
  7. * @return this returns a list of the names within the header
  8. */
  9. public List<String> getNames() {
  10. return request.getNames();
  11. }

代码示例来源:origin: CodeStory/fluent-http

  1. @Override
  2. public List<String> headerNames() {
  3. return request.getNames();
  4. }

代码示例来源:origin: lantunes/fixd

  1. public List<String> getHeaderNames() {
  2. return request.getNames();
  3. }

代码示例来源:origin: miltonio/milton2

  1. public Map<String, String> getHeaders() {
  2. Map<String, String> headers = new HashMap<String, String>();
  3. for (String s : baseRequest.getNames()) {
  4. String val = baseRequest.getValue(s);
  5. headers.put(s, val);
  6. }
  7. return headers;
  8. }

代码示例来源:origin: com.sun.jersey.contribs/jersey-simple-server

  1. private InBoundHeaders getHeaders(Request request) {
  2. InBoundHeaders header = new InBoundHeaders();
  3. List<String> names = request.getNames();
  4. for (String name : names) {
  5. String value = request.getValue(name);
  6. header.add(name, value);
  7. }
  8. return header;
  9. }

代码示例来源:origin: org.restlet/org.restlet.ext.simple

  1. /**
  2. * Returns the list of request headers.
  3. *
  4. * @return The list of request headers.
  5. */
  6. @Override
  7. public Series<Parameter> getRequestHeaders() {
  8. final Series<Parameter> result = super.getRequestHeaders();
  9. if (!this.requestHeadersAdded) {
  10. final List<String> names = this.request.getNames();
  11. for (String name : names) {
  12. result.add(new Parameter(name, this.request.getValue(name)));
  13. }
  14. this.requestHeadersAdded = true;
  15. }
  16. return result;
  17. }

代码示例来源:origin: kristofa/mock-http-server

  1. public static FullHttpRequest convert(final Request request) {
  2. byte[] data = null;
  3. try {
  4. final InputStream inputStream = request.getInputStream();
  5. try {
  6. data = IOUtils.toByteArray(inputStream);
  7. } finally {
  8. inputStream.close();
  9. }
  10. } catch (final IOException e) {
  11. LOGGER.error("IOException when getting request content.", e);
  12. }
  13. final FullHttpRequestImpl httpRequest = new FullHttpRequestImpl();
  14. httpRequest.domain(request.getAddress().getDomain());
  15. httpRequest.port(request.getAddress().getPort());
  16. httpRequest.method(Method.valueOf(request.getMethod()));
  17. httpRequest.path(request.getPath().getPath());
  18. if (data.length > 0) {
  19. httpRequest.content(data);
  20. }
  21. for (final String headerField : request.getNames()) {
  22. for (final String headerFieldValue : request.getValues(headerField)) {
  23. httpRequest.httpMessageHeader(headerField, headerFieldValue);
  24. }
  25. }
  26. for (final Entry<String, String> entry : request.getQuery().entrySet()) {
  27. httpRequest.queryParameter(entry.getKey(), entry.getValue());
  28. }
  29. return httpRequest;
  30. }

代码示例来源:origin: org.glassfish.jersey.containers/jersey-container-simple-http

  1. @Override
  2. public void handle(final Request request, final Response response) {
  3. final ResponseWriter responseWriter = new ResponseWriter(response, scheduler);
  4. final URI baseUri = getBaseUri(request);
  5. final URI requestUri = getRequestUri(request, baseUri);
  6. try {
  7. final ContainerRequest requestContext = new ContainerRequest(baseUri, requestUri,
  8. request.getMethod(), getSecurityContext(request), new MapPropertiesDelegate());
  9. requestContext.setEntityStream(request.getInputStream());
  10. for (final String headerName : request.getNames()) {
  11. requestContext.headers(headerName, request.getValue(headerName));
  12. }
  13. requestContext.setWriter(responseWriter);
  14. requestContext.setRequestScopedInitializer(injectionManager -> {
  15. injectionManager.<Ref<Request>>getInstance(RequestTYPE).set(request);
  16. injectionManager.<Ref<Response>>getInstance(ResponseTYPE).set(response);
  17. });
  18. appHandler.handle(requestContext);
  19. } catch (final Exception ex) {
  20. throw new RuntimeException(ex);
  21. } finally {
  22. if (!responseWriter.isSuspended()) {
  23. close(response);
  24. }
  25. }
  26. }

相关文章