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


Java URIBuilder.setPath方法代码示例

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


在下文中一共展示了URIBuilder.setPath方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: build

import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
/**
 * Creates a URI for the requested api and method
 * [bittrex-api-url]/[version]/[api]/[method]
 * 
 * @param api
 *            API to use
 * @param method
 *            String literal representing the methodname
 * @param params
 *            URI Parameter
 * @return Bittrex API URI
 */
public static URI build(String api, String method, Map<String, String> params) {
	final URIBuilder builder = new URIBuilder();
	builder.setScheme(SCHEME);
	builder.setHost(HOST);
	builder.setPath(String.format("%s/%s/%s/%s", API_PATH, VERSION, api, method));
	if(params == null) {
		params = new HashMap<>();
	}
	
	for(Entry<String, String> paramEntry : params.entrySet()) {
		builder.addParameter(paramEntry.getKey(), paramEntry.getValue());
	}

	try {
		return builder.build();
	} catch (URISyntaxException e) {
		// Do
		e.printStackTrace();
	}

	return null;
}
 
开发者ID:Lyhnx,项目名称:bittrex-api-wrapper,代码行数:35,代码来源:BittrexUri.java

示例2: createLocationURI

import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
@Override
protected URI createLocationURI(String location) throws ProtocolException
{
    try
    {
        final URIBuilder b = new URIBuilder(new URI(encode(location)).normalize());
        final String host = b.getHost();
        if (host != null)
        {
            b.setHost(host.toLowerCase(Locale.ROOT));
        }
        final String path = b.getPath();
        if (TextUtils.isEmpty(path))
        {
            b.setPath("/");
        }
        return b.build();
    }
    catch (final URISyntaxException ex)
    {
        throw new ProtocolException("Invalid redirect URI: " + location, ex);
    }
}
 
开发者ID:PaleoCrafter,项目名称:CurseSync,代码行数:24,代码来源:SafeRedirectStrategy.java

示例3: buildUri

import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
URI buildUri(URI baseUri, Map<String, String> params) {

            String schemaAfterReplacements = replaceParamsInTemplate(schema, params);

            URIBuilder builder = new URIBuilder();
            builder.setScheme(baseUri.getScheme());
            builder.setHost(baseUri.getHost());
            builder.setPort(baseUri.getPort());
            String path = baseUri.normalize().getPath() + schemaAfterReplacements;
            builder.setPath(path.replaceAll("//", "/")); // Replace double slashes

            for (String templateParamKey : templateParams.keySet()) {
                String templateParamKeyAfterReplacements = replaceParamsInTemplate(templateParamKey, params);
                String templateParamValueAfterReplacements = replaceParamsInTemplate(templateParams.get(templateParamKey), params);
                builder.setParameter(templateParamKeyAfterReplacements, templateParamValueAfterReplacements);
            }


            URI result;
            try {
                result = builder.build();
            } catch (URISyntaxException e) {
                throw new WebmateApiClientException("Could not build valid API URL", e);
            }
            return result;
        }
 
开发者ID:webmate-io,项目名称:webmate-sdk-java,代码行数:27,代码来源:WebmateApiClient.java

示例4: httpGetRequest

import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
public static String httpGetRequest(String url, Map<String, Object> params) throws URISyntaxException {
    URIBuilder ub = new URIBuilder();
    ub.setPath(url);

    ArrayList<NameValuePair> pairs = covertParams2NVPS(params);
    ub.setParameters(pairs);

    HttpGet httpGet = new HttpGet(ub.build());
    return getResult(httpGet);
}
 
开发者ID:wolfboys,项目名称:opencron,代码行数:11,代码来源:HttpClientUtils.java

示例5: getClientPathBuilder

import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
@Override
protected URIBuilder getClientPathBuilder(String action) {
    URIBuilder builder = super.getClientPathBuilder(action);
    builder.setPath(builder.getPath().replace("{roomId}", roomId));

    return builder;
}
 
开发者ID:kamax-io,项目名称:matrix-java-sdk,代码行数:8,代码来源:MatrixHttpRoom.java

示例6: getPathBuilder

import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
protected URIBuilder getPathBuilder(String module, String version, String action) {
    URIBuilder builder = context.getHs().getClientEndpoint();
    builder.setPath(builder.getPath() + "/_matrix/" + module + "/" + version + action);
    if (context.isVirtualUser()) {
        context.getUser().ifPresent(user -> builder.setParameter("user_id", user.getId()));
    }

    return builder;
}
 
开发者ID:kamax-io,项目名称:matrix-java-sdk,代码行数:10,代码来源:AMatrixHttpClient.java

示例7: buildUriFromRepositoryName

import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
protected String buildUriFromRepositoryName(String gitUriParam, String gitServiceUrl) throws SLException {
    try {
        URIBuilder gitUriBuilder = new URIBuilder(gitServiceUrl);
        gitUriBuilder.setPath(PATH_SEPARATOR + gitUriParam);
        return gitUriBuilder.toString();
    } catch (URISyntaxException e) {
        throw new SLException(e, Messages.ERROR_PROCESSING_GIT_URI);
    }
}
 
开发者ID:SAP,项目名称:cf-mta-deploy-service,代码行数:10,代码来源:ProcessGitSourceStep.java

示例8: 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

示例9: 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

示例10: makeLink

import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
private URI makeLink(boolean remove_last_segment) throws ODataException
{
   try
   {
      URIBuilder ub = new URIBuilder(ServiceFactory.EXTERNAL_URL);
      StringBuilder sb = new StringBuilder();

      String prefix = ub.getPath();
      String path = getContext().getPathInfo().getRequestUri().getPath();
      if (path == null || path.isEmpty() ||
            prefix != null && !prefix.isEmpty() && !path.startsWith(ub.getPath()))
      {
         sb.append(prefix);

         if (path != null)
         {
            if (prefix.endsWith("/") && path.startsWith("/"))
            {
               sb.deleteCharAt(sb.length() - 1);
            }
            if (!prefix.endsWith("/") && !path.startsWith("/"))
            {
               sb.append('/');
            }
         }
      }
      sb.append(path);

      if (remove_last_segment)
      {
         // Removes the last segment.
         int lio = sb.lastIndexOf("/");
         while (lio != -1 && lio == sb.length() - 1)
         {
            sb.deleteCharAt(lio);
            lio = sb.lastIndexOf("/");
         }
         if (lio != -1)
         {
            sb.delete(lio + 1, sb.length());
         }

         // Removes the `$links` segment.
         lio = sb.lastIndexOf("$links/");
         if (lio != -1)
         {
            sb.delete(lio, lio + 7);
         }
      }
      else if (!sb.toString().endsWith("/") && !sb.toString().endsWith("\\"))
      {
         sb.append("/");
      }
      ub.setPath(sb.toString());
      return ub.build();
   }
   catch (NullPointerException | URISyntaxException e)
   {
      throw new ODataException(e);
   }
}
 
开发者ID:SentinelDataHub,项目名称:dhus-core,代码行数:62,代码来源:Processor.java


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