我编写了一个获取系统日期的程序。
<%@page import="java.util.*,java.text.*"%>
<html>
<body>
<p> </p>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing
="0" width="460" bgcolor="#EEFFCA">
<tr>
<td width="100%"><font size="6" color
="#008000"> Date Example</font></td>
</tr>
<tr>
<td width="100%"><b> Current Date
and time is: <font color="#FF0000">
<%
DateFormat formatter = new SimpleDateFormat("DD-MON-YY");
String date = formatter.format(new java.util.Date());
%>
<%=date%>
</font></b></td>
</tr>
</table>
</center>
</div>
</body>
< /html>
我收到一个错误。请让我知道如何将系统日期转换为 dd-MMM-YY 格式。