如何对日期对象进行格式化,以得到自己想要的格式化的字符串
----------------解决方案--------------------------------------------------------
SimpleDateFormat formater=new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
Date date=new Date();
String strdate=formater.Format(date);
System.out.println("现在日期:"+strdate);
zhe yang wei sha bu zheng que?
----------------解决方案--------------------------------------------------------
SimpleDateFormat formater=(SimpleDateFormat)SimpleDateFormat.getInstance();
formater.applyPattern("yyyy-MM-dd hh:mm:ss");
Date date=new Date();
String strdate=formater.format(date);
System.out.println("现在日期:"+strdate);
zhe yang jiu mei wen ti le,
dan shi time is not right if now time is 20:21:10
then result show is 08:21:10
wo gai zen mo xie de dao 20:21
----------------解决方案--------------------------------------------------------
import java.text.SimpleDateFormat;
import java.util.Date;
class Woker
{
public static void main(String arg[])
{
SimpleDateFormat formater=new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
Date date=new Date();
String strdate=formater.getDateTimeInstance().format(date);
System.out.println("现在日期:"+strdate);
}
}
看看这样行不行!!
----------------解决方案--------------------------------------------------------
谢谢,这样就能得到了
----------------解决方案--------------------------------------------------------
不客气,共同学习
----------------解决方案--------------------------------------------------------