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

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?

share|improve this question
When you say ArrayList, did you mean ResultSet? ArrayList does not have columns. Or do they? – Nishant Jan 24 '11 at 7:11
No they don't. They are the same thing as Vectors sans thread safety. – KitsuneYMG Jan 24 '11 at 7:13
The result ArrayList contains String arrays which has the mappings for each column for the resultset. – user533329 Jan 24 '11 at 7:14
so, why don't you do myArrayList.get(indexOfTheRow)[indexOfTheColumn] – Nishant Jan 24 '11 at 7:16
1  
The best option for you is to create a list Java objects which represents your row. Pull columns from ResultSet using resultSet.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
show 2 more comments

2 Answers

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.

share|improve this answer

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 ArrayList and not a ResultSet then do this

myList.get( desiredRow*column_width /*4*/ + desiredCol);

This assumes row-major ordering.

share|improve this answer
sorry, can u please be brief on your answer – user533329 Jan 24 '11 at 7:18
1  
I'm pretty sure the answer is brief -.- – KitsuneYMG Jan 24 '11 at 7:22

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.