我需要使用户能够从日历中选择一个日期,然后在控制台上显示所选的日期。
Usign以下代码可以显示datetimepicker并接收选定的日期。当变量的类型为String时,将显示以下输出
2013-03-27T00:00:00+11:00
当变量的类型为Date时,显示以下输出
null
如何以yyyy-mm-dd或dd-mm-yyyy接收结果?因此应该是2013年3月27日或2013年3月27日
我对使用subStr不感兴趣,还有其他方法吗?
JSP
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib uri="/struts-tags" prefix="s"%>
<%@taglib uri="/struts-dojo-tags" prefix="sx" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<sx:head/>
<title>JSP Page</title>
</head>
....
<sx:datetimepicker name="Sdate"
label="MyDate"
displayFormat="dd-MMM-yyyy"
value="todayDate"/>
.....
类
public class Datepicker{
private String sdate;
... getter and setter go here ...
}
最佳答案
这是错字问题
您的JSP包含sx:datetimepicker name="Sdate"
,应为sx:datetimepicker name="sdate"
但是private String sdate;
中的属性
您只能在类似private Date sdate;
的控制器中使用数据类型为Date
编辑:
String str = "2013-03-27T00:00:00+11:00";
SimpleDateFormat formatter = new SimpleDateFormat("dd-MMM-yyyy");
try {
SimpleDateFormat parseFormatter = new SimpleDateFormat("yyyy-MM-dd");
//SimpleDateFormat dt = new SimpleDateFormat("yyyyy-mm-dd hh:mm:ss+hh:mm");
Date date = parseFormatter.parse(str);
String formattedDate = formatter.format(date);
System.out.println(formattedDate);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}