请问这是怎么回事啊  String author=request.getParameter("author");
String content=request.getParameter("content");
//author=new String(author.getBytes("iso8859-1"),"gb2312");
//content=new String(content.getBytes("iso8859-1"),"gb2312");
SimpleDateFormat formatter = new SimpleDateFormat ("yyyy-MM-dd ");  
String Add_time = formatter.format(new java.utill.Data());
//Add_time=new String(Add_time.getBytes("iso8859-1"),"gb2312");
//将提交的数据加入数据库
stmt.executeUpdate("insert into mess2(author,content,year) values('"+author+"','"+content+"','"+Add_time+"')");
out.print("1");   
运行后提示说 java.utill.Data cann't be resolved to a type 
我的数据库是mysql的 year的字段是datetime,原来是date改成现在的还是不行,那位高手能帮帮忙,谢谢!