Save Excel document Apache POI
问题 I need to create informs from an excel document, I'm using Java and Apache POI. Here is my code: //Get path with JFileChooser public static String LeeRuta(){ JFileChooser chooser = new JFileChooser(); chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES); chooser.showDialog(chooser, "Seleccionar"); File f =chooser.getSelectedFile(); File camino = f.getAbsoluteFile(); String ruta = camino.getAbsolutePath(); return ruta; } //main public static void main(String args[]) { String ruta