我正在使用最新的okhttp版本:okhttp-2.3.0.jar
我发现一个related question关于android,但没有回答这里!
解决方法
正如在另一个答案中提到的,okhttp v2.4提供了新的功能,这使得它成为可能.
这是不可能的当前版本的okhttp,there is no method provided that will handle this for you.
最好的事情是建立一个url字符串或URL对象(在java.net.URL中找到),其中包含自己的查询,并将其传递给okhttp的请求构建器.
您可以看到,Request.Builder可以使用字符串或URL.
关于如何构建URL的示例可以在What is the idiomatic way to compose a URL or URI in Java?找到