本文整理匯總了Java中javax.activation.MimeType.match方法的典型用法代碼示例。如果您正苦於以下問題:Java MimeType.match方法的具體用法?Java MimeType.match怎麽用?Java MimeType.match使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.activation.MimeType
的用法示例。
在下文中一共展示了MimeType.match方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: logoutByPost
import javax.activation.MimeType; //導入方法依賴的package包/類
@RequestMapping(value = "/api/logout", method = RequestMethod.POST)
public void logoutByPost(@RequestBody String requestBody, @RequestHeader(value = "Content-Type") MimeType contentType,
HttpServletResponse response) throws IOException, JSONException {
String sessionUUID;
if (contentType.match(JSONConverter.MIME_TYPE_JSON)) {
try {
JSONObject json = new JSONObject(requestBody);
sessionUUID = json.getString("session");
} catch (JSONException e) {
response.sendError(HttpServletResponse.SC_BAD_REQUEST);
return;
}
} else if (contentType.match(FORM_TYPE)) {
String[] fields = requestBody.split("=");
if (fields.length < 2) {
response.sendError(HttpServletResponse.SC_BAD_REQUEST);
return;
}
sessionUUID = URLEncodeUtils.decodeUtf8(fields[1]);
} else {
throw new IllegalStateException("Unsupported content type: " + contentType);
}
doLogout(sessionUUID, response);
}
示例2: getConverter
import javax.activation.MimeType; //導入方法依賴的package包/類
public Converter getConverter(MimeType requestedForm) {
if (requestedForm != null) {
for (Converter converter : getConverters()) {
if (requestedForm.match(converter.getMimeType()) && converter.getApiVersions().contains(restApiVersion))
return converter;
}
}
throw new RuntimeException("Converter not found");
}