viernes, 7 de octubre de 2011

Java Swing 002: Pedir y mostrar texto

Swing 002: Pedir y mostrar texto

import javax.swing.*;
public class S_002 {
    public static void main (String args[]) {
        String texto = JOptionPane.showInputDialog (null,"Ingrese texto",null);
        JOptionPane.showMessageDialog (null,texto);
    }
}


■ Resultado en ejecución:

Pedir y mostrar texto usando Swing

No hay comentarios:

Publicar un comentario