本文整理汇总了Java中org.eclipse.jetty.io.AbstractBuffer类的典型用法代码示例。如果您正苦于以下问题:Java AbstractBuffer类的具体用法?Java AbstractBuffer怎么用?Java AbstractBuffer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AbstractBuffer类属于org.eclipse.jetty.io包,在下文中一共展示了AbstractBuffer类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: postData
import org.eclipse.jetty.io.AbstractBuffer; //导入依赖的package包/类
public static InvokeResult postData(String url, String params) {
if (StringUtils.isBlank(url) || StringUtils.isBlank(params)) {
return InvokeResult.errorResult;
}
ContentExchange contentExchange = new ContentExchange();
contentExchange.setMethod(HttpMethod.POST.getValue());
contentExchange.setURL(url);
try {
AbstractBuffer content = new ByteArrayBuffer(params.getBytes(InvokerMsg.CHARSET_UTF8));
contentExchange.setRequestContent(content);
return invoke(contentExchange);
} catch (UnsupportedEncodingException e) {
logger.error(e.getMessage(), e);
}
return InvokeResult.errorResult;
}
开发者ID:shuqin,项目名称:ALLIN,代码行数:17,代码来源:JettyHttpClientUtil.java
示例2: putData
import org.eclipse.jetty.io.AbstractBuffer; //导入依赖的package包/类
public static InvokeResult putData(String url, String params) {
if (StringUtils.isBlank(url) || StringUtils.isBlank(params)) {
return InvokeResult.errorResult;
}
ContentExchange contentExchange = new ContentExchange();
contentExchange.setMethod(HttpMethod.PUT.getValue());
contentExchange.setURL(url);
try {
AbstractBuffer content = new ByteArrayBuffer(params.getBytes(InvokerMsg.CHARSET_UTF8));
contentExchange.setRequestContent(content);
return invoke(contentExchange);
} catch (UnsupportedEncodingException e) {
logger.error(e.getMessage(), e);
}
return InvokeResult.errorResult;
}
开发者ID:shuqin,项目名称:ALLIN,代码行数:17,代码来源:JettyHttpClientUtil.java
示例3: streamingHandshake
import org.eclipse.jetty.io.AbstractBuffer; //导入依赖的package包/类
public GenericContentExchange streamingHandshake(String instance, String sessionId) throws IOException {
GenericContentExchange exchange = new GenericContentExchange();
//ContentExchange exchange = new ContentExchange();
exchange.setMethod("POST");
exchange.setURL(instance + SfdcConstants.DEFAULT_PUSH_ENDPOINT + SfdcConstants.HANDSHAKE);
exchange.setRequestHeader("Authorization", "Bearer " + sessionId);
exchange.setRequestHeader("Content-Type", "application/json");
AbstractBuffer buffer = new ByteArrayBuffer(SfdcConstants.HANDSHAKE_MESSAGE.getBytes());
exchange.setRequestContent(buffer);
send(exchange);
return exchange;
}
开发者ID:AlgeFramework,项目名称:alge-core,代码行数:13,代码来源:JettyAsyncHttpClientImpl.java
注:本文中的org.eclipse.jetty.io.AbstractBuffer类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论