For just storing simple values, you should use an implementation of the List<E> interface.
To get data from a List<E> you can do the following:
list.get(index); // will get data at a given index
// or you can iterate over all of the items in the list
for(E item: list) {
// use E
}
Depending on your use either an ArrayList<E> or LinkedList<E> will do what you need.
Another option would be a Map<K, V> (it's implementation HashMap). This will allow you to save duplicate values under unique keys.
You can get values out of a Map<K,V> in the following ways:
map.get(someKey); // will retrieve the value associated with a key
// or you can iterate through all of the entries in a map like so:
for(Entry<K,V> entry: map.entrySet()){
// use entry
}
Response to your edit:
You may want to use a Map<String, List<String>> where the key is the name of the file, and the value is a list of the words in the file.
Your code may look like this:
Map<String, List<String>> data = new HashMap<String, List<String>>();
for(File f: files) {
List<String> words = new ArrayList<String();
data.put(f.getName(), words);
Scanner s = new Scanner(f);
while(s.hasNext()) {
words.add(s.next());
}
}
At the end of this snipit, data will be filled with lists of words from each file.