Error con string en try catch
Publicado por Kompanhero (4 intervenciones) el 12/01/2011 21:49:54
He codificado las siguientes lineas pero me marca un error, ya le he revisado una y otra vez y no encuentro que es lo que está mal, espero que alguien me puedan ayudar.
Lo tengo codificado dentro de una página jsp.
<%
Calendar today = Calendar.getInstance();
String hoy = today.get(Calendar.DAY_OF_MONTH) + "/" + (today.get(Calendar.MONTH)+1) + "/" + today.get(Calendar.YEAR);
String fechaLista;
try{
fechaLista = (String) sesion.getAttribute("fechaAsistencia");
}catch(Exception e){
fechaLista = (today.get(Calendar.YEAR) + "-" + (today.get(Calendar.MONTH)+1) + "-" + today.get(Calendar.DAY_OF_MONTH));
}
%>
De antemano gracias.
Saludos y espero sus respuestas =)
Lo tengo codificado dentro de una página jsp.
<%
Calendar today = Calendar.getInstance();
String hoy = today.get(Calendar.DAY_OF_MONTH) + "/" + (today.get(Calendar.MONTH)+1) + "/" + today.get(Calendar.YEAR);
String fechaLista;
try{
fechaLista = (String) sesion.getAttribute("fechaAsistencia");
}catch(Exception e){
fechaLista = (today.get(Calendar.YEAR) + "-" + (today.get(Calendar.MONTH)+1) + "-" + today.get(Calendar.DAY_OF_MONTH));
}
%>
De antemano gracias.
Saludos y espero sus respuestas =)
Valora esta pregunta
0