Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/04/2002, 12:05
imakiu
 
Fecha de Ingreso: enero-2002
Mensajes: 136
Antigüedad: 22 años, 3 meses
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