当前位置: 代码迷 >> Java相关 >> [求助]格式化
  详细解决方案

[求助]格式化

热度:441   发布时间:2006-10-09 20:13:35.0
[求助]格式化

如何对日期对象进行格式化,以得到自己想要的格式化的字符串

搜索更多相关的解决方案: 格式化  

----------------解决方案--------------------------------------------------------

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);
}
}
看看这样行不行!!

----------------解决方案--------------------------------------------------------
谢谢,这样就能得到了
----------------解决方案--------------------------------------------------------
不客气,共同学习
----------------解决方案--------------------------------------------------------
  相关解决方案