29/10/2008, 14:36
|
| | | Fecha de Ingreso: junio-2008 Ubicación: Santander, Colombia
Mensajes: 608
Antigüedad: 16 años, 7 meses Puntos: 53 | |
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);
}
}
|