当前位置: 首页>>代码示例>>Java>>正文


Java HttpURLConnection.getDoInput方法代码示例

本文整理汇总了Java中java.net.HttpURLConnection.getDoInput方法的典型用法代码示例。如果您正苦于以下问题:Java HttpURLConnection.getDoInput方法的具体用法?Java HttpURLConnection.getDoInput怎么用?Java HttpURLConnection.getDoInput使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.net.HttpURLConnection的用法示例。


在下文中一共展示了HttpURLConnection.getDoInput方法的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;
}
 
开发者ID:dreaminglion,项目名称:iosched-reader,代码行数:64,代码来源:AbstractHttpClient.java


注:本文中的java.net.HttpURLConnection.getDoInput方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。