org.apache.coyote.Response.getContentType()方法的使用及代码示例

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

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

Response.getContentType介绍

暂无

代码示例

代码示例来源:origin: line/armeria

private static HttpHeaders convertResponse(Response coyoteRes) {
  final HttpHeaders headers = HttpHeaders.of(HttpStatus.valueOf(coyoteRes.getStatus()));
  final String contentType = coyoteRes.getContentType();
  if (contentType != null && !contentType.isEmpty()) {
    headers.set(HttpHeaderNames.CONTENT_TYPE, contentType);
  }
  final long contentLength = coyoteRes.getBytesWritten(true); // 'true' will trigger flush.
  final String method = coyoteRes.getRequest().method().toString();
  if (!"HEAD".equals(method)) {
    headers.setLong(HttpHeaderNames.CONTENT_LENGTH, contentLength);
  }
  final MimeHeaders cHeaders = coyoteRes.getMimeHeaders();
  final int numHeaders = cHeaders.size();
  for (int i = 0; i < numHeaders; i++) {
    final AsciiString name = toHeaderName(cHeaders.getName(i));
    if (name == null) {
      continue;
    }
    final String value = toHeaderValue(cHeaders.getValue(i));
    if (value == null) {
      continue;
    }
    headers.add(name.toLowerCase(), value);
  }
  return headers;
}

代码示例来源:origin: tomcat/catalina

/**
 * Return the content type that was set or calculated for this response,
 * or <code>null</code> if no content type was set.
 */
public String getContentType() {
  return (coyoteResponse.getContentType());
}

代码示例来源:origin: org.jboss.web/jbossweb

/**
 * Return the content type that was set or calculated for this response,
 * or <code>null</code> if no content type was set.
 */
public String getContentType() {
  return (coyoteResponse.getContentType());
}

代码示例来源:origin: jboss.web/jbossweb

/**
 * Return the content type that was set or calculated for this response,
 * or <code>null</code> if no content type was set.
 */
public String getContentType() {
  return (coyoteResponse.getContentType());
}

代码示例来源:origin: codefollower/Tomcat-Research

/**
 * Return the content type that was set or calculated for this response,
 * or <code>null</code> if no content type was set.
 */
@Override
public String getContentType() {
  return (coyoteResponse.getContentType());
}

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

/**
 * Return the content type that was set or calculated for this response,
 * or <code>null</code> if no content type was set.
 */
@Override
public String getContentType() {
  return (coyoteResponse.getContentType());
}

代码示例来源:origin: org.osivia.portal.core/osivia-portal-jbossas-jbossweb-lib

/*      */   public String getContentType()
/*      */   {
/*  503 */     return this.coyoteResponse.getContentType();
/*      */   }
/*      */

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

/**
 * Return the content type that was set or calculated for this response,
 * or <code>null</code> if no content type was set.
 */
@Override
public String getContentType() {
  return (coyoteResponse.getContentType());
}

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

/**
 * Return the content type that was set or calculated for this response,
 * or <code>null</code> if no content type was set.
 */
@Override
public String getContentType() {
  return (coyoteResponse.getContentType());
}

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

/**
 * Return the content type that was set or calculated for this response,
 * or <code>null</code> if no content type was set.
 */
@Override
public String getContentType() {
  return (coyoteResponse.getContentType());
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

/**
 * Return the content type that was set or calculated for this response,
 * or <code>null</code> if no content type was set.
 */
@Override
public String getContentType() {
  return (coyoteResponse.getContentType());
}

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

/**
 * @return the content type that was set or calculated for this response,
 * or <code>null</code> if no content type was set.
 */
@Override
public String getContentType() {
  return getCoyoteResponse().getContentType();
}

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

/**
 * @return the content type that was set or calculated for this response,
 * or <code>null</code> if no content type was set.
 */
@Override
public String getContentType() {
  return getCoyoteResponse().getContentType();
}

代码示例来源:origin: org.osivia.portal.core/osivia-portal-jbossas-jbossweb-lib

/*      */   public boolean containsHeader(String name)
/*      */   {
/* 1056 */     char cc = name.charAt(0);
/* 1057 */     if ((cc == 'C') || (cc == 'c')) {
/* 1058 */       if (name.equalsIgnoreCase("Content-Type"))
/*      */       {
/* 1060 */         return this.coyoteResponse.getContentType() != null;
/*      */       }
/* 1062 */       if (name.equalsIgnoreCase("Content-Length"))
/*      */       {
/* 1064 */         return this.coyoteResponse.getContentLengthLong() != -1L;
/*      */       }
/*      */     }
/*      */ 
/* 1068 */     return this.coyoteResponse.containsHeader(name);
/*      */   }
/*      */

代码示例来源:origin: org.jboss.web/jbossweb

/**
 * Has the specified header been set already in this response?
 *
 * @param name Name of the header to check
 */
public boolean containsHeader(String name) {
  // Need special handling for Content-Type and Content-Length due to
  // special handling of these in coyoteResponse
  char cc=name.charAt(0);
  if(cc=='C' || cc=='c') {
    if(name.equalsIgnoreCase("Content-Type")) {
      // Will return null if this has not been set
      return (coyoteResponse.getContentType() != null);
    }
    if(name.equalsIgnoreCase("Content-Length")) {
      // -1 means not known and is not sent to client
      return (coyoteResponse.getContentLengthLong() != -1);
    }
  }
  return coyoteResponse.containsHeader(name);
}

代码示例来源:origin: jboss.web/jbossweb

/**
 * Has the specified header been set already in this response?
 *
 * @param name Name of the header to check
 */
public boolean containsHeader(String name) {
  // Need special handling for Content-Type and Content-Length due to
  // special handling of these in coyoteResponse
  char cc=name.charAt(0);
  if(cc=='C' || cc=='c') {
    if(name.equalsIgnoreCase("Content-Type")) {
      // Will return null if this has not been set
      return (coyoteResponse.getContentType() != null);
    }
    if(name.equalsIgnoreCase("Content-Length")) {
      // -1 means not known and is not sent to client
      return (coyoteResponse.getContentLengthLong() != -1);
    }
  }
  return coyoteResponse.containsHeader(name);
}

代码示例来源:origin: tomcat/catalina

/**
 * Has the specified header been set already in this response?
 *
 * @param name Name of the header to check
 */
public boolean containsHeader(String name) {
  // Need special handling for Content-Type and Content-Length due to
  // special handling of these in coyoteResponse
  char cc=name.charAt(0);
  if(cc=='C' || cc=='c') {
    if(name.equalsIgnoreCase("Content-Type")) {
      // Will return null if this has not been set
      return (coyoteResponse.getContentType() != null);
    }
    if(name.equalsIgnoreCase("Content-Length")) {
      // -1 means not known and is not sent to client
      return (coyoteResponse.getContentLengthLong() != -1);
    }
  }
  return coyoteResponse.containsHeader(name);
}

代码示例来源:origin: codefollower/Tomcat-Research

/**
 * Has the specified header been set already in this response?
 *
 * @param name Name of the header to check
 */
@Override
public boolean containsHeader(String name) {
  // Need special handling for Content-Type and Content-Length due to
  // special handling of these in coyoteResponse
  char cc=name.charAt(0);
  if(cc=='C' || cc=='c') {
    if(name.equalsIgnoreCase("Content-Type")) {
      // Will return null if this has not been set
      return (coyoteResponse.getContentType() != null);
    }
    if(name.equalsIgnoreCase("Content-Length")) {
      // -1 means not known and is not sent to client
      return (coyoteResponse.getContentLengthLong() != -1);
    }
  }
  return coyoteResponse.containsHeader(name);
}

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

/**
 * Has the specified header been set already in this response?
 *
 * @param name Name of the header to check
 */
@Override
public boolean containsHeader(String name) {
  // Need special handling for Content-Type and Content-Length due to
  // special handling of these in coyoteResponse
  char cc=name.charAt(0);
  if(cc=='C' || cc=='c') {
    if(name.equalsIgnoreCase("Content-Type")) {
      // Will return null if this has not been set
      return (coyoteResponse.getContentType() != null);
    }
    if(name.equalsIgnoreCase("Content-Length")) {
      // -1 means not known and is not sent to client
      return (coyoteResponse.getContentLengthLong() != -1);
    }
  }
  return coyoteResponse.containsHeader(name);
}

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

/**
 * Has the specified header been set already in this response?
 *
 * @param name Name of the header to check
 * @return <code>true</code> if the header has been set
 */
@Override
public boolean containsHeader(String name) {
  // Need special handling for Content-Type and Content-Length due to
  // special handling of these in coyoteResponse
  char cc=name.charAt(0);
  if(cc=='C' || cc=='c') {
    if(name.equalsIgnoreCase("Content-Type")) {
      // Will return null if this has not been set
      return (getCoyoteResponse().getContentType() != null);
    }
    if(name.equalsIgnoreCase("Content-Length")) {
      // -1 means not known and is not sent to client
      return (getCoyoteResponse().getContentLengthLong() != -1);
    }
  }
  return getCoyoteResponse().containsHeader(name);
}

相关文章

微信公众号

最新文章

更多