我正在尝试找到一种方法来编写一个可以与 json-rpc 服务通信的 java 应用程序(该服务是一个 python 扭曲服务器)。
但是,我还没有找到一个像样的图书馆,里面有一些很好的例子(我已经用谷歌搜索并摆弄了大约 6 个小时)。
那么在 Java 中是否有任何用于此的库,或者是否有更繁琐的低级方式。
你可以看看 Spring 和 RestTemplate 类(这里有一个很好的介绍:http: //blog.springsource.com/2009/03/27/rest-in-spring-3-resttemplate/)。
或者,您可以使用Commons HttpClient将您的 Json 有效负载发布/获取到服务。
PostMethod post = new PostMethod("http://myservice.com");
// add the payload to the post object
HttpClient client = new HttpClient();
int status = client.executeMethod(post);
String response = post.getResponseBodyAsString();
看看这个:https ://code.google.com/p/json-rpc-client/
以上是可以与 JSON RPC 服务对话的 Java 中的 JSON RPC 客户端。