First, understand the problem. If every file in your directory started with a period, your TreeMap would be empty. But what happens if you firstMap.get(i) and firstMap does not contain the key i?
The documentation for Map (an interface that TreeMap implements) tells you this:
V get(Object key):
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
Thus, if the key is not found in your TreeMap, tempBr will be null. Then, when you call tempBr.readLine(), you get a NullPointerException because null doesn't have a readLine() method or any other method.
BufferedReader tempBr = firstMap.get(i);
String line = tempBr.readLine();
Solution:
Though you could do this with a Map, ArrayList or LinkedList seem to be the more natural choices. This looks like homework, so I'm not giving you exact code to fix your problem. Here's an example that illustrates your problem and its solution.
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
public class MyClass {
static final String[] fileNames = {"a", ".b", "c", ".d", "e", ".f"};
public static void main(String[] args) {
incorrect();
corrected();
improved();
}
public static void incorrect() {
Map<Integer, String> myMap = new TreeMap<Integer, String>();
for (int i = 0; i < fileNames.length; i++) {
if (!fileNames[i].startsWith(".")) {
myMap.put(i, fileNames[i]);
}
}
System.out.println(myMap);
for (int i = 0; i < fileNames.length; i++) {
System.out.println(myMap.get(i));
}
}
public static void corrected() {
Map<Integer, String> myMap = new TreeMap<Integer, String>();
for (int i = 0; i < fileNames.length; i++) {
if (!fileNames[i].startsWith(".")) {
myMap.put(i, fileNames[i]);
}
}
System.out.println(myMap);
for (int i = 0; i < fileNames.length; i++) {
if (myMap.containsKey(i)) {
System.out.println(myMap.get(i));
}
}
}
public static void improved() {
List<String> myList = new ArrayList<String>();
for (String fileName : fileNames) {
if (!fileName.startsWith(".")) {
myList.add(fileName);
}
}
System.out.println(myList);
for (String fileName : myList) {
System.out.println(fileName);
}
}