本文整理匯總了Java中org.apache.http.client.fluent.Request.bodyString方法的典型用法代碼示例。如果您正苦於以下問題:Java Request.bodyString方法的具體用法?Java Request.bodyString怎麽用?Java Request.bodyString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.http.client.fluent.Request
的用法示例。
在下文中一共展示了Request.bodyString方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: put
import org.apache.http.client.fluent.Request; //導入方法依賴的package包/類
/**
* Send PUT request with authorization header
* @param url - The url of the POST request
* @param auth - String for authorization header
* @param putData - The body of the PUT
*/
public Response put(String url, String auth, JsonJavaObject putData) throws URISyntaxException, IOException, JsonException {
URI normUri = new URI(url).normalize();
Request putRequest = Request.Put(normUri);
//Add auth header
if(StringUtil.isNotEmpty(auth)) {
putRequest.addHeader("Authorization", auth);
}
//Add put data
String putDataString = JsonGenerator.toJson(JsonJavaFactory.instanceEx, putData);
if(putData != null) {
putRequest = putRequest.bodyString(putDataString, ContentType.APPLICATION_JSON);
}
Response response = executor.execute(putRequest);
return response;
}
示例2: post
import org.apache.http.client.fluent.Request; //導入方法依賴的package包/類
public static String post(KeyPair keyPair,String url,Map<String,String> query,String body) throws ApiException {
URI uri = buildUri(url,query);
if(uri == null) {
return "";
}
url = uri.toString();
log.info("post url:{}",url);
Request request = Request.Post(url);
request.bodyString(body, ContentType.parse(Constant.CONTENT_TYPE));
//request.body(new StringEntity(body,"UTF-8"));
return request(keyPair,request,Constant.METHOD_POST,query,body);
}
示例3: post
import org.apache.http.client.fluent.Request; //導入方法依賴的package包/類
private Response post(HttpRequest request) throws IOException {
Request apacheRequest = Request.Post(request.getUrl());
if (request.getBody() != null) {
ContentType ct = ContentType.create(request.getContentType().getMimeType(),
request.getContentType().getCharset());
apacheRequest.bodyString(request.getBody(), ct);
} else if (request.getBodyForm() != null) {
apacheRequest.bodyForm(buildFormBody(request.getBodyForm()));
}
prepareRequest(apacheRequest);
return apacheRequest.execute();
}
示例4: put
import org.apache.http.client.fluent.Request; //導入方法依賴的package包/類
private Response put(HttpRequest request) throws IOException {
Request apacheRequest = Request.Put(request.getUrl());
if (request.getBody() != null) {
ContentType ct = ContentType.create(request.getContentType().getMimeType(),
request.getContentType().getCharset());
apacheRequest.bodyString(request.getBody(), ct);
} else if (request.getBodyForm() != null) {
apacheRequest.bodyForm(buildFormBody(request.getBodyForm()));
}
prepareRequest(apacheRequest);
return apacheRequest.execute();
}