當前位置: 首頁>>代碼示例>>Java>>正文


Java URIBuilder.setCharset方法代碼示例

本文整理匯總了Java中org.apache.http.client.utils.URIBuilder.setCharset方法的典型用法代碼示例。如果您正苦於以下問題:Java URIBuilder.setCharset方法的具體用法?Java URIBuilder.setCharset怎麽用?Java URIBuilder.setCharset使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.http.client.utils.URIBuilder的用法示例。


在下文中一共展示了URIBuilder.setCharset方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: generateRequestURI

import org.apache.http.client.utils.URIBuilder; //導入方法依賴的package包/類
/**
 * 返回完整的請求URL;
 *
 * @param pathParams  路徑參數;
 * @param queryParams 查詢參數;
 * @return
 */
public URI generateRequestURI(Map<String, String> pathParams, Properties queryParams,
                              Charset encodingCharset){
    // 生成路徑;
    String reallyActionPath = createActionPath(pathParams);
    String path = PathUtils.concatPaths(serviceEndpoint.getContextPath(), servicePath, reallyActionPath);
    path = PathUtils.absolute(path);

    // 生成查詢字符串;
    URIBuilder uriBuilder = new URIBuilder();
    uriBuilder.setCharset(encodingCharset);
    if (serviceEndpoint.isHttps()) {
        uriBuilder.setScheme("https");
    } else {
        uriBuilder.setScheme("http");
    }

    uriBuilder.setHost(serviceEndpoint.getHost());
    uriBuilder.setPort(serviceEndpoint.getPort());
    uriBuilder.setPath(path.toString());
    List<NameValuePair> queryParameters = RequestUtils.createQueryParameters(queryParams);
    uriBuilder.setParameters(queryParameters);
    try {
        return uriBuilder.build();
    } catch (URISyntaxException e) {
        throw new IllegalArgumentException(e.getMessage(), e);
    }
}
 
開發者ID:bubicn,項目名稱:bubichain-sdk-java,代碼行數:35,代碼來源:RequestPathTemplate.java

示例2: buildURIByConfig

import org.apache.http.client.utils.URIBuilder; //導入方法依賴的package包/類
/**
 * 創建URI
 *
 * @return
 */
public URI buildURIByConfig() throws URISyntaxException {
    URIBuilder builder = new URIBuilder();
    builder.setHost(config.getHost());
    builder.setPort(config.getPort());
    builder.setPath(config.getPath());
    builder.setScheme(config.getProtocol());
    builder.setCharset(Charset.forName(config.getCharset()));
    return builder.build();
}
 
開發者ID:AsuraTeam,項目名稱:asura,代碼行數:15,代碼來源:AbstractHttpSmsSender.java


注:本文中的org.apache.http.client.utils.URIBuilder.setCharset方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。