Package com.utils

Examples of com.utils.FiltroArchivos


            else
            {
                String extension = ".dat";
                if(esQuery)
                    extension = ".sql";
                FiltroArchivos fa = new FiltroArchivos(extension);
                File archivos[] = Archivo.listFiles(fa);
                if( archivos != null || archivos.length > 0)
                {
                    if(!esTexto)
                        pbar.setMaximum(archivos.length);
View Full Code Here


                al.setVisible(true);
                return;
            }
           
            // comprueba si hay archivos con extensi�n sql
            FiltroArchivos fa = null;
      if(rbQuery.isSelected())
        fa = new FiltroArchivos(".sql");
      else
        fa = new FiltroArchivos(".dat");
            File archivos[] = fArchivo.listFiles(fa);
            if( archivos == null || archivos.length < 1)
            {
                al = new Alerta(new javax.swing.JDialog(),
                    Gestor.GetLiteral("gestor.alert","Atenci�n"),true,Gestor.GetLiteral("importardlg.error_6","El directorio") + " " +
View Full Code Here

TOP

Related Classes of com.utils.FiltroArchivos

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.