本文整理了Java中org.simpleframework.http.Request.getContentType
方法的一些代码示例,展示了Request.getContentType
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.getContentType
方法的具体详情如下:
包路径:org.simpleframework.http.Request
类名称:Request
方法名:getContentType
暂无
代码示例来源:origin: org.simpleframework/simple
/**
* This is a convenience method that can be used to determine the
* content type of the message body. This will determine whether
* there is a <code>Content-Type</code> header, if there is then
* this will parse that header and represent it as a typed object
* which will expose the various parts of the HTTP header.
*
* @return this returns the content type value if it exists
*/
public ContentType getContentType() {
return request.getContentType();
}
代码示例来源:origin: org.simpleframework/simple-http
/**
* This is a convenience method that can be used to determine the
* content type of the message body. This will determine whether
* there is a <code>Content-Type</code> header, if there is then
* this will parse that header and represent it as a typed object
* which will expose the various parts of the HTTP header.
*
* @return this returns the content type value if it exists
*/
public ContentType getContentType() {
return request.getContentType();
}
代码示例来源:origin: ngallagher/simpleframework
/**
* This is a convenience method that can be used to determine the
* content type of the message body. This will determine whether
* there is a <code>Content-Type</code> header, if there is then
* this will parse that header and represent it as a typed object
* which will expose the various parts of the HTTP header.
*
* @return this returns the content type value if it exists
*/
public ContentType getContentType() {
return request.getContentType();
}
代码示例来源:origin: io.restx/restx-server-simple
@Override
public String getContentType() {
return request.getContentType().getType();
}
代码示例来源:origin: restx/restx
@Override
public String getContentType() {
return request.getContentType().getType();
}
代码示例来源:origin: lantunes/fixd
public String getContentType() {
return request.getContentType().getType();
}
代码示例来源:origin: org.simpleframework/simple-http
/**
* This is used to determine if the content type is a form POST
* of type application/x-www-form-urlencoded. Such a type is
* used when a HTML form is used to post data to the server.
*
* @return this returns true if content type is a form post
*/
private boolean isFormPost() {
ContentType type = request.getContentType();
if(type == null) {
return false;
}
return isFormPost(type);
}
代码示例来源:origin: CodeStory/fluent-http
@Override
public String contentType() {
return request.getContentType().getType();
}
代码示例来源:origin: org.simpleframework/simple
/**
* This is used to determine if the content type is a form POST
* of type application/x-www-form-urlencoded. Such a type is
* used when a HTML form is used to post data to the server.
*
* @return this returns true if content type is a form post
*/
private boolean isFormPost() {
ContentType type = request.getContentType();
if(type == null) {
return false;
}
return isFormPost(type);
}
代码示例来源:origin: ngallagher/simpleframework
/**
* This is used to determine if the content type is a form POST
* of type application/x-www-form-urlencoded. Such a type is
* used when a HTML form is used to post data to the server.
*
* @return this returns true if content type is a form post
*/
private boolean isFormPost() {
ContentType type = request.getContentType();
if(type == null) {
return false;
}
return isFormPost(type);
}
代码示例来源:origin: lantunes/fixd
public ResolvedRequest resolve(Request request) {
ResolvedRequest resolved = new ResolvedRequest();
String method = request.getMethod();
String path = RequestUtils.getUndecodedPath(request);
ContentType requestContentType = request.getContentType();
/* get the route and the handler for this request */
Route route = router.route(path);
if (route == null) {
logger.error("could not find a route for " + path);
resolved.errorStatus = Status.NOT_FOUND;
return resolved;
}
String contentType = requestContentType != null ?
requestContentType.getType() : null;
HandlerKey key = new HandlerKey(method, route, contentType);
RequestHandlerImpl handler = handlerMap.get(key);
if (handler == null) {
logger.error("could not find a handler for " +
method + " - " + path + " - " + contentType);
resolved.errorStatus = Status.METHOD_NOT_ALLOWED;
return resolved;
}
resolved.handler = handler;
resolved.route = route;
resolved.key = key;
return resolved;
}
内容来源于网络,如有侵权,请联系作者删除!