Tema: impresion
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/10/2008, 14:36
Avatar de JairLizcano
JairLizcano
 
Fecha de Ingreso: junio-2008
Ubicación: Santander, Colombia
Mensajes: 608
Antigüedad: 15 años, 11 meses
Puntos: 53
Exclamación Respuesta: impresion

Código:
package texto;
import javax.swing.*;

public class Main {

    public static void main(String[] args) {
       
        String name="";
        name = JOptionPane.showInputDialog(null, "name");
        name.toLowerCase();
        
        JTextField impresion = new JTextField();
        
        impresion.setText(name);
        
        
    }

}