这是Android平台上基于JSON格式数据的RPC远程过程调用(JSONRPC)的客户端开发包。
示例代码:
JSONRPCClientclient=JSONRPCClient.create("https://service/uri");client.setConnectionTimeout(2000);client.setSoTimeout(2000);try{ Stringstring=client.callString("mymethod"); doubled=client.callDouble("pow",x,y); inti=client.callInt("add",56,25);...}catch(JSONRPCExceptione){ e.printStackTrace();}
评论