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);
}
}
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