This should be simple.
I have an integer array that I want to encode in JSON formatting so I can pass it to a web service:
int[] myInts = new int[length-1];
myInts = {5, 6, 7, 1, 12, ..., 78};
JSONArray jArray = new JSONArray();
//now what?
Thanks.