I have this JSON file right now:
{
"0": {
"username": "username1",
"password": "password1"
},
"1": {
"username": "username2",
"password": "password2"
}
}
I want to get all of the usernames and convert it into a ArrayList. So my ArrayList will have just the usernames, username1, and username2.
I'm using org.JSON also.