14/01/2008, 13:41
|
| | | Fecha de Ingreso: mayo-2007
Mensajes: 32
Antigüedad: 17 años, 8 meses Puntos: 1 | |
Re: Hora y fecha Hola espero y te sirva !!! :P
import java.util.Date;
class FechaApp {
public static void main( String args[] ) {
Date hoy = new Date();
System.out.println( hoy );
}
} |