【Java】怎样获取当前系统时间,需要的格式为yyyy-MM-dd HH:mm:ss
我是以ibatis为框架写的程序,需要在web层里边写~~我其他字段是这样写的:pmWorkdiary.setCreateuser(userName);时间也要这样写,而...
我是以ibatis为框架写的程序,需要在web层里边写~~
我其他字段是这样写的:pmWorkdiary.setCreateuser(userName);
时间也要这样写,而且格式要是yyyy-MM-dd HH:mm:ss的,
怎么获取然后显示啊?
我在实体类定义Date的类型为String 展开
我其他字段是这样写的:pmWorkdiary.setCreateuser(userName);
时间也要这样写,而且格式要是yyyy-MM-dd HH:mm:ss的,
怎么获取然后显示啊?
我在实体类定义Date的类型为String 展开
5个回答
展开全部
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time= sdf.format( new Date());
这个字符串 time已经成为你要的格式了
字符串变date
Date date=sdf.parse(time);
String time= sdf.format( new Date());
这个字符串 time已经成为你要的格式了
字符串变date
Date date=sdf.parse(time);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
导入包:
import java.text.SimpleDateFormat;
import java.util.Date;
在输入以下获取代码就可以啦
SimpleDateFormat formater=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String strCurrentTime=formater.format(new Date());
System.out.print(strCurrentTime);
import java.text.SimpleDateFormat;
import java.util.Date;
在输入以下获取代码就可以啦
SimpleDateFormat formater=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String strCurrentTime=formater.format(new Date());
System.out.print(strCurrentTime);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
貌似直接new Date();就可以了然后调用它的getDate()方法
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
@Test
public void getCurrentDate(){
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat();
sdf.applyPattern("yyyy-MM-dd");
System.out.println(sdf.format(date));
}
public void getCurrentDate(){
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat();
sdf.applyPattern("yyyy-MM-dd");
System.out.println(sdf.format(date));
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询