本文整理了Java中org.apache.catalina.connector.Request.getContentType
方法的一些代码示例,展示了Request.getContentType
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.getContentType
方法的具体详情如下:
包路径:org.apache.catalina.connector.Request
类名称:Request
方法名:getContentType
[英]Return the content type for this Request.
[中]返回此请求的内容类型。
代码示例来源:origin: org.apache.geronimo.modules/geronimo-tomcat6
public String getContentType() {
return request.getContentType();
}
代码示例来源:origin: org.apache.geronimo.modules/geronimo-tomcat
public String getContentType() {
return request.getContentType();
}
代码示例来源:origin: org.glassfish.main.web/web-core
@Override
public String getContentType() {
if (request == null) {
throw new IllegalStateException(rb.getString(LogFacade.CANNOT_USE_REQUEST_OBJECT_OUTSIDE_SCOPE_EXCEPTION));
}
return request.getContentType();
}
代码示例来源:origin: org.apache.tomcat/tomcat-catalina
@Override
public String getContentType() {
if (request == null) {
throw new IllegalStateException(
sm.getString("requestFacade.nullRequest"));
}
return request.getContentType();
}
代码示例来源:origin: codefollower/Tomcat-Research
@Override
public String getContentType() {
if (request == null) {
throw new IllegalStateException(
sm.getString("requestFacade.nullRequest"));
}
return request.getContentType();
}
代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9
@Override
public String getContentType() {
if (request == null) {
throw new IllegalStateException(
sm.getString("requestFacade.nullRequest"));
}
return request.getContentType();
}
代码示例来源:origin: tomcat/catalina
public String getContentType() {
if (request == null) {
throw new IllegalStateException(
sm.getString("requestFacade.nullRequest"));
}
return request.getContentType();
}
代码示例来源:origin: jboss.web/jbossweb
public String getContentType() {
if (request == null) {
throw new IllegalStateException(
sm.getString("requestFacade.nullRequest"));
}
return request.getContentType();
}
代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina
@Override
public String getContentType() {
if (request == null) {
throw new IllegalStateException(
sm.getString("requestFacade.nullRequest"));
}
return request.getContentType();
}
代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina
@Override
public String getContentType() {
if (request == null) {
throw new IllegalStateException(
sm.getString("requestFacade.nullRequest"));
}
return request.getContentType();
}
代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core
@Override
public String getContentType() {
if (request == null) {
throw new IllegalStateException(
sm.getString("requestFacade.nullRequest"));
}
return request.getContentType();
}
代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9
@Override
public String getContentType() {
if (request == null) {
throw new IllegalStateException(
sm.getString("requestFacade.nullRequest"));
}
return request.getContentType();
}
代码示例来源:origin: org.jboss.web/jbossweb
public String getContentType() {
if (request == null) {
throw MESSAGES.nullRequestFacade();
}
return request.getContentType();
}
代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7
@Override
public String getContentType() {
if (request == null) {
throw new IllegalStateException(
sm.getString("requestFacade.nullRequest"));
}
return request.getContentType();
}
代码示例来源:origin: org.glassfish.main.web/web-core
private boolean isMultipart() {
if (!request.getMethod().toLowerCase(Locale.ENGLISH).equals("post")) {
return false;
}
String contentType = request.getContentType();
if (contentType == null) {
return false;
}
if (contentType.toLowerCase(Locale.ENGLISH).startsWith("multipart/form-data")) {
return true;
}
return false;
}
代码示例来源:origin: org.glassfish.main.web/web-core
private void processParameters() {
if (parametersProcessed) {
return;
}
getCharacterEncoding();
if (isMultipartConfigured() && getMethod().equalsIgnoreCase("POST")) {
String contentType = getContentType();
if (contentType != null &&
contentType.startsWith("multipart/form-data")) {
getMultipart().init();
}
}
parametersProcessed = true;
}
代码示例来源:origin: org.apache.geronimo.modules/geronimo-tomcat6
body.append(buffer, 0, bytesRead);
saved.setContentType(request.getContentType());
saved.setBody(body);
代码示例来源:origin: com.tomitribe.tribestream/tribestream-container
request.getCoyoteRequest() != null ? request.getContentLength() : 0,
request.getPathInfo(),
request.getCoyoteRequest() != null ? request.getContentType() : null,
request.getScheme(),
request.getRemoteAddr(),
代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9
body.append(buffer, 0, bytesRead);
saved.setContentType(request.getContentType());
saved.setBody(body);
代码示例来源:origin: org.apache.tomcat/tomcat-catalina
saved.setContentType(request.getContentType());
saved.setBody(body);
内容来源于网络,如有侵权,请联系作者删除!