he querido hacer esto, pero no me funciona
JOptionPane op = new JOptionPane("Espere a que se cargue el contenido",JOptionPane.INFORMATION_MESSAGE);
JDialog dialog = op.createDialog("Aviso");
dialog.setAlwaysOnTop(true); //<-- this line
dialog.setModal(true);
dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON _CLOSE);
dialog.setVisible(true);
try {
Thread.sleep(2000);
} catch (InterruptedException ex) {
Logger.getLogger(Proveedores.class.getName()).log( Level.SEVERE, null, ex);
}
dialog.setVisible(false);
Tengo que darle en el JoptionPane Aceptar, como quito ese boton o activo cerrar dialogo en determinado tiempo.
gracias--