pattern formato fmt fecha jsp date-format

formato - Convierta y formatee una fecha en JSP



jsp date (7)

Echa un vistazo a DateFormatter . Probablemente pueda hacer lo que quieras.

Desde mi página JSP, obtengo la Date en este formato.

Viernes 13 de mayo de 2011 19:59:09 GMT 0530 (hora estándar de la India)

¿Cómo puedo convertir esto al patrón yyyy-MM-dd HH:mm:ss ?


El ejemplo anterior que muestra la importación con ... sun.com/jsp/jstl/format es incorrecto (lo que significa que no funcionó para mí).

En su lugar, intente lo siguiente: esta declaración de importación es válida

<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %><%@ taglib uri="http://java.sun.com/jstl/core-rt" prefix="c-rt" %><%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %> <html> <head> <title>Format Date</title> </head> <body> <c-rt:set var="now" value="<%=new java.util.Date()%>" /> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="63%" id="AutoNumber2"> <tr> <td width="100%" colspan="2" bgcolor="#0000FF"> <p align="center"> <b> <font color="#FFFFFF" size="4">Formatting: <fmt:formatDate value="${now}" type="both" timeStyle="long" dateStyle="long" /> </font> </b> </p> </td> </tr>


En JSP, normalmente le gustaría usar JSTL <fmt:formatDate> para esto. Por supuesto, también puede lanzar un scriptlet con SimpleDateFormat , pero los scriptlets se desaconsejan desde 2003.

Suponiendo que ${bean.date} devuelva java.util.Date , así es como puede usarlo:

<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> ... <fmt:formatDate value="${bean.date}" pattern="yyyy-MM-dd HH:mm:ss" />

Si realmente está usando un java.util.Calendar , puede invocar su método getTime() para obtener un java.util.Date que <fmt:formatDate> acepte:

<fmt:formatDate value="${bean.calendar.time}" pattern="yyyy-MM-dd HH:mm:ss" />

O bien, si en realidad tiene la fecha en java.lang.String (esto indica un grave error de diseño en el modelo; realmente debería arreglar su modelo para almacenar fechas como java.util.Date lugar de como java.lang.String !), Así es cómo se puede convertir desde un formato de cadena de fecha, por ejemplo, MM/dd/yyyy a otro formato de cadena de fecha, por ejemplo, yyyy-MM-dd con la ayuda de JSTL <fmt:parseDate> .

<fmt:parseDate pattern="MM/dd/yyyy" value="${bean.dateString}" var="parsedDate" /> <fmt:formatDate value="${parsedDate}" pattern="yyyy-MM-dd" />


Puedes hacerlo usando la clase SimpleDateFormat .

SimpleDateFormat formatter=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String dates=formatter.format(mydate); //mydate is your date object


<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html dir="ltr" lang="en-US"> <head> <meta charset="UTF-8" /> <title>JSP with the current date</title> </head> <body> <%java.text.DateFormat df = new java.text.SimpleDateFormat("dd/MM/yyyy"); %> <h1>Current Date: <%= df.format(new java.util.Date()) %> </h1> </body> </html>

Salida: Fecha actual: 10/03/2010


<%@page import="java.text.SimpleDateFormat"%> <%@page import="java.util.Date"%> <%@page import="java.util.Locale"%> <html> <head> <title>Date Format</title> </head> <body> <% String stringDate = "Fri May 13 2011 19:59:09 GMT 0530"; Date stringDate1 = new SimpleDateFormat("EEE MMM dd yyyy HH:mm:ss Z", Locale.ENGLISH).parse(stringDate); String stringDate2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(stringDate1); out.println(stringDate2); %> </body> </html>


Date td = new Date(); String b = new String(""); SimpleDateFormat format = new SimpleDateFormat("YYYY/MM/dd"); b = format.format(td); out.println(b);