Posts by Evandro • 26 points
1 post
-
1
votes1
answer1850
viewsA: Exception when reading excel file using apache poi
Use the below method to select the file. Here it worked: JFileChooser chooser = new JFileChooser(); chooser.showDialog(chooser, "Selecionar"); File arquivo = chooser.getSelectedFile();…