Since Java7 you can simply use FileNameExtensionFilter(String description, String... extensions)
A simple JFileChooser analog to the example would be:
JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileFilter(new FileNameExtensionFilter("Text files", "txt"));
I know the question was answered long ago, but this is actually the simplest solution.