http://idk.i2p/javadoc-i2p/com/thetransactioncompany/jsonrpc2/JSONRPC2Parser.html
Alternatively, you may
use the thread-safe JSONRPC2Message.parse(java.lang.String) and its sister methods. Example: String jsonString = "{\"method\":\"makePayment\"," +
"\"params\":{\"recipient\":\"Penny Adams\",\"amount\":175.05}," +
"\"id\":\"0001\","+
"\"jsonrpc\":\"2.0\"}";
JSONRPC2Request req = null;
JSONRPC2Parser parser = new JSONRPC2Parser();
try {
req =...