Hi i am trying to format string at JSP page it gave me error as i mentioned in title my code is,
String header="";
header = 12-29-2011 15;
out.format("%0$s:00:00\n",header);
it result in error “The method format(String, String) is undefined for the type JspWrite”
Hopes for your suggestions
Thanks in Advance!
I think you need to use
string.format()orSimpleDateFormatand print the resutls usingout.print().