关于JSP自定义标签的问题
rara 2003-03-12 02:26:37 编译如下程序,却提示错误
“com\wrox\ch10\timeTag.java:5: 'class' or 'interface' expected
pulbic class timeTag extends TagSupport{
^
1 error”,请高手指教。
package com.wrox.ch10;
import javax.servlet.jsp.tagext.TagSupport;
import javax.servlet.jsp.*;
import java.text.SimpleDateFormat;
pulbic class timeTag extends TagSupport{
public int doEndTag() throws JspException{
SimpleDateFormat sdf;
sdf=new SimpleDateFormat("HH;mm:ss");
String time=sdf.format(new java.util.Date());
try
{
pageContext.getOut().print(time);
}
catch(Exception e)
{
throw new JspException(e.toString());
}
return EVAL_PAGE;
}
}