我有两个数组,我想从其他数组访问相同索引值的数据。
两个数组列表:
ArrayList<Integer> Position = new ArrayList<Integer>();
ArrayList<String> List_Data = new ArrayList<String>();
现在我的Position
数组包含整数值,如数据i.e 0,3,5 out of 10
记录的索引。我只想得到那些索引应该是的字符串 i.e 0,3,5 out of 10
。
例子 :
String Array >> [A,B,C,D,E,F,G,H,J,K];
Index >> Now i am selecting 2 ,5 index data.
Final Output as string >> C,F
所以最后我从数组中得到实际的字符串。
我也得到了这个和其他一些链接,但不知道如何做到这一点。
请任何人帮助我。