This question already has an answer here:
I have a array
File [] temp=null;
And I have a arrayList of File
type
List <File> tempList = new ArrayList <File>();
Now I want to add the content from temp
to tempList
. So anyone can please tell me How do I this?
temp
array and add each File to thetempList
– MaVRoSCy May 8 '13 at 10:05