3.- Java en Consola, Lectura por teclado en Caja de Texto usando Swing
Pide Ayuda en
Vídeo
Código
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
///.- Java en Consola
package demo;
import Javax.swing.*;
import javax.swing.JOptionPane;
/**
*
* @author JoseLuis
*/
public class Demo {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
String nombre = JOptionPane.showInputDialog(«Escribe tu Nombre»);
JOptionPane.showMessageDialog(null, «Tu Nombre es : » + nombre);
}
}