List Question in Java
Posted
by TiNS
on Stack Overflow
See other posts from Stack Overflow
or by TiNS
Published on 2010-05-31T07:27:21Z
Indexed on
2010/05/31
7:32 UTC
Read the original article
Hit count: 120
Hello All,
I have a following ArrayList,
[Title,Data1,Data2,Data3]
[A,2,3,4]
[B,3,5,7]
And I would like to convert this one like this,
[Title,A,B]
[Data1,2,3]
[Data2,3,5]
[Data3,4,7]
I'm bit confused with the approach. Any hint would be much appreciated.
Thanks.
© Stack Overflow or respective owner