当前位置:  开发笔记 > 编程语言 > 正文

如何将查询参数添加到GetMethod(使用Java commons-httpclient)?

如何解决《如何将查询参数添加到GetMethod(使用Javacommons-httpclient)?》经验,为你挑选了3个好方法。

使用Apache的commons-httpclient for Java,将查询参数添加到GetMethod实例的最佳方法是什么?如果我使用PostMethod,它非常简单:

PostMethod method = new PostMethod();
method.addParameter("key", "value");

但是,GetMethod没有"addParameter"方法.我发现这有效:

GetMethod method = new GetMethod("http://www.example.com/page");
method.setQueryString(new NameValuePair[] {
    new NameValuePair("key", "value")
});

但是,我见过的大多数示例都是将参数直接硬编码到URL中,例如:

GetMethod method = new GetMethod("http://www.example.com/page?key=value");

或者对查询字符串进行硬编码,例如:

GetMethod method = new GetMethod("http://www.example.com/page");
method.setQueryString("?key=value");

这些模式中的一种是首选吗?为什么PostMethod和GetMethod之间的API差异?那些用于其他HttpMethodParams方法的是什么?



1> Ryan Guest..:

Post方法有post参数,但get方法没有.

查询参数嵌入在URL中.当前版本的HttpClient接受构造函数中的字符串.如果要添加上面的键值对,可以使用:

String url = "http://www.example.com/page?key=value";
GetMethod method = new GetMethod(url);

可以在Apache Jakarta Commons页面上找到一个好的入门教程.

更新:正如评论中所建议的那样,NameValuePair可以正常工作.

GetMethod method = new GetMethod("example.com/page"); 
method.setQueryString(new NameValuePair[] { 
    new NameValuePair("key", "value") 
}); 


我发现这有效:GetMethod方法= new GetMethod("http://www.example.com/page"); method.setQueryString(new NameValuePair [] {new NameValuePair("key","value")}); 但是,教程页面上没有提到这一点.应该避免这种模式吗?

2> 小智..:

这不仅仅是个人偏好的问题.这里的相关问题是对参数值进行URL编码,这样这些值就不会被破坏或误解为额外的分隔符等.

与往常一样,最好详细阅读API文档: HttpClient API文档

阅读本文,您可以看到setQueryString(String)不会对您的参数和值进行URL编码或分隔,而setQueryString(NameValuePair[])会自动对您的参数名称和值进行URL编码和分隔.无论何时使用动态数据,这都是最好的方法,因为它可能包含&符号,等号等.



3> 小智..:

试试这种方式:

    URIBuilder builder = new URIBuilder("https://graph.facebook.com/oauth/access_token")
            .addParameter("client_id", application.getKey())
            .addParameter("client_secret", application.getSecret())
            .addParameter("redirect_uri", callbackURL)
            .addParameter("code", code);

    HttpPost method = new HttpPost(builder.build());


UrlBuilder是什么包?
推荐阅读
虎仔球妈_459
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有