Android JSON RPC

码农软件 · 软件分类 · JSON/BSON开发包 · 2019-04-01 22:57:55

软件介绍

这是 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();
}

本文地址:https://codercto.com/soft/d/2663.html

Mission Python

Mission Python

Sean McManus / No Starch Press / 2018-9-18 / GBP 24.99

Launch into coding with Mission Python, a space-themed guide to building a complete computer game in Python. You'll learn programming fundamentals like loops, strings, and lists as you build Escape!, ......一起来看看 《Mission Python》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具