Like the question asks I’m trying to convert this array into a multidimensional arraylist.
I know this can convert a single dimensional array to an arraylist but mine is mwarray(0-alot,0-1)
table = New ArrayList(mwaray)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assuming you want to take all values from the multi-dimensional array and put it into a single
ArrayList, then you can just loop through the values and add them: