![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
16/04/2002, 12:05
|
| | Fecha de Ingreso: enero-2002
Mensajes: 136
Antigüedad: 23 años, 1 mes Puntos: 1 | |
Re: Formato de fechas Gracias por la respuesta, me será muy útil. También he visto otra forma de hacerlo. La pondré por si alguien se interesa:
<%
java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("dd/MM/yyyy");
java.util.Date fecha= new java.util.Date();
out.println(sdf.format(fecha));
%>
Salus :) s |