Package org.sfsoft.cargarimagenes.util

Examples of org.sfsoft.cargarimagenes.util.FiltroImagen


     */
   
    File directorio = fileChooser.getSelectedFile();
    tfRuta.setText(directorio.getAbsolutePath());
    ficheros = new ArrayList<File>();
    ficheros.addAll(Arrays.asList(directorio.listFiles(new FiltroImagen())));
   
    if (ficheros.size() == 0)
      JOptionPane.showMessageDialog(null, "El directorio no contiene imágenes", "Examinar", JOptionPane.WARNING_MESSAGE);
   
    btCargar.setEnabled(true);
View Full Code Here

TOP

Related Classes of org.sfsoft.cargarimagenes.util.FiltroImagen

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.