I have downloaded json-rpc-1.0 jar and this is an example that I found in a web page
import org.json.JSONObject;
...
...
JSONObject json = new JSONObject();
json.put("city", "Mumbai");
json.put("country", "India");
...
String output = json.toString();
I just wanna know how to import this jar to my jsp
I got something like this <%@page import="org.json.JSONObject.*" %>
but I don't have any idea of what I'm doing
Someone can tell me how it works this library? an easy example or a web page with docs about that