I want to append , to a string builder if the variable a is less than the length of array
And i am incrementing "a" everytime . I am using following code for it.
But it is appending "," at the end also which i dont want.
for(int n=0;n<fieldMap.length();n++)
{
int a=0;
JSONObject object = fieldMap.getJSONObject(n);
String type= object.getString("type");
String name= object.getString("name");
createTable.append(name +" ");
createTable.append(type);
a++;
if(!(a==(fieldMap.length()-1))) {
createTable.append(",");
}
}
How to solve this problem.
Thanks