本文整理匯總了Java中org.kohsuke.stapler.StaplerRequest.getContentType方法的典型用法代碼示例。如果您正苦於以下問題:Java StaplerRequest.getContentType方法的具體用法?Java StaplerRequest.getContentType怎麽用?Java StaplerRequest.getContentType使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.kohsuke.stapler.StaplerRequest
的用法示例。
在下文中一共展示了StaplerRequest.getContentType方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: parse
import org.kohsuke.stapler.StaplerRequest; //導入方法依賴的package包/類
private WebHookPayload parse(StaplerRequest req) throws IOException {
//TODO Actually test what duckerhub is really sending
String body = IOUtils.toString(req.getInputStream(), req.getCharacterEncoding());
String contentType = req.getContentType();
if (contentType != null && contentType.startsWith("application/x-www-form-urlencoded")) {
body = URLDecoder.decode(body, req.getCharacterEncoding());
}
logger.log(Level.FINER, "Received commit hook notification : {0}", body);
try {
JSONObject payload = JSONObject.fromObject(body);
return createPushNotification(payload);
} catch (Exception e) {
logger.log(Level.SEVERE, "Could not parse the web hook payload!", e);
return null;
}
}