cargarHuellaBt.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
FileChooser chooser = new FileChooser();
int returnVal = chooser.showOpenDialog(PresoController.this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = chooser.getSelectedFile();
//This is where a real application would open the file.
System.out.println("File " + file.getPath());