I have retrived some datas from DB and I have stored it in an ArrayList. The ArrayList contains some 50 rows returned each row containin 4 columns. How do I access a particular column of a particular object in ArrayList? Can someone help me with this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Not sure what is the exact issue here. List is based on the index and hence you can access any data based on index. Another option is to convert use Map which allows you to refer to the data based on a key you desire. |
|||
|
|
|
Due to new data posted in comments on the question, this is now know to not be what OP wants. I'd delete it but, given what I've read from him/her so far, I'm afraid he/she may be forever flummoxed by the disappearance of an answer. ORIGINAL ANSWER If you really have an
This assumes row-major ordering. |
|||||||
|
myArrayList.get(indexOfTheRow)[indexOfTheColumn]– Nishant Jan 24 '11 at 7:16ResultSetusingresultSet.getString(columnName)and store the result in the object. Do the same for each row, and create a List of objects. Then use the list of object to do your work. download.oracle.com/javase/6/docs/api/java/sql/… – Nishant Jan 24 '11 at 7:22