本文整理汇总了Java中java.net.HttpURLConnection.getDoOutput方法的典型用法代码示例。如果您正苦于以下问题:Java HttpURLConnection.getDoOutput方法的具体用法?Java HttpURLConnection.getDoOutput怎么用?Java HttpURLConnection.getDoOutput使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.net.HttpURLConnection
的用法示例。
在下文中一共展示了HttpURLConnection.getDoOutput方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: doHttpMethod
import java.net.HttpURLConnection; //导入方法依赖的package包/类
/**
* This is the method that drives each request. It implements the request
* lifecycle defined as open, prepare, write, read. Each of these methods in
* turn delegates to the {@link RequestHandler} associated with this client.
*
* @param path Whole or partial URL string, will be appended to baseUrl
* @param httpMethod Request method
* @param contentType MIME type of the request
* @param content Request data
* @return Response object
* @throws HttpRequestException
*/
@SuppressWarnings("finally")
protected HttpResponse doHttpMethod(String path, HttpMethod httpMethod, String contentType,
byte[] content) throws HttpRequestException {
HttpURLConnection uc = null;
HttpResponse httpResponse = null;
try {
isConnected = false;
uc = openConnection(path);
prepareConnection(uc, httpMethod, contentType);
appendRequestHeaders(uc);
if (requestLogger.isLoggingEnabled()) {
requestLogger.logRequest(uc, content);
}
// Explicit connect not required, but lets us easily determine when
// possible timeout exception occurred
uc.connect();
isConnected = true;
if (uc.getDoOutput() && content != null) {
writeOutputStream(uc, content);
}
if (uc.getDoInput()) {
httpResponse = readInputStream(uc);
} else {
httpResponse = new HttpResponse(uc, null);
}
} catch (Exception e) {
// Try reading the error stream to populate status code such as 404
try {
httpResponse = readErrorStream(uc);
} catch (Exception ee) {
e.printStackTrace();
// Must catch IOException, but swallow to show first cause only
} finally {
// if status available, return it else throw
if (httpResponse != null && httpResponse.getStatus() > 0) {
return httpResponse;
}
throw new HttpRequestException(e, httpResponse);
}
} finally {
if (requestLogger.isLoggingEnabled()) {
requestLogger.logResponse(httpResponse);
}
if (uc != null) {
uc.disconnect();
}
}
return httpResponse;
}