在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
(1) string timeData = datePicker1.Text; timeData = timeData.Replace("/","-"); DatePicker控件获得的数据是字符串格式的,同DateTime获得的时间格式不同,此时用Replace方法替换
(2)在C#中如下Convert.ToDateTime('2012-2-2').ToString("yyyy-MM-dd");
(3)SimpleDateFormat formatter=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); string date=formatter.format("你保存日期的变量");
(4) DateTime mydatetime; 先将DatePicker控件获得数据转换为DateTime,再转换为所需要的格式。
|
请发表评论