Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 1 down vote accepted

If i where you I'd create a JSONObject first and then create the JSONArray and use

myJsonArray.put(value);

and finally add the jsonarray to the JSONObject. I suppose this would work nice for a small set of numbers however if you want to pass a large set of integers there should be a more elegant way to do it than this.

share|improve this answer
int[] myInts = {1,2,3,4,5}; 
JSONArray jArray = new JSONArray(myInts);
System.out.println(jArray.toString());
share|improve this answer
"The constructor JSONArray(int[]) is undefined" is what I got when I tried this. – YoungMoney Sep 10 '11 at 18:25
Javadoc for JSONArray(java.lang.Object array). Which JSON library are you using? – Sahil Muthoo Sep 10 '11 at 18:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.