当前位置: 软件>java软件
Android JSON RPC
本文导语: 这是 Android 平台上基于 JSON 格式数据的 RPC 远程过程调用 (JSON RPC) 的客户端开发包。 示例代码: JSONRPCClient client = JSONRPCClient.create("http://service/uri");client.setConnectionTimeout(2000);client.setSoTimeout(2000);try { String string = client.callString("my...
这是 Android 平台上基于 JSON 格式数据的 RPC 远程过程调用 (JSON RPC) 的客户端开发包。
示例代码:
JSONRPCClient client = JSONRPCClient.create("http://service/uri");
client.setConnectionTimeout(2000);
client.setSoTimeout(2000);
try
{
String string = client.callString("mymethod");
double d = client.callDouble("pow", x, y);
int i = client.callInt("add", 56, 25); ...
}
catch (JSONRPCException e)
{
e.printStackTrace();
}