不要因为没有阳光,而走不进春天,不要因为没有歌声,而放弃自己的追求,不要因为没有掌声,而丢掉自己的理想。其实每一条都通往阳光的大道,都充满坎坷,每一条通向理想的途径,都充满了艰辛与汗水!
package test.remote.tools.combine; import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar; public class TestOutDate
{
public static void main(String[] args)
{
//method 1
Calendar nowtime = new GregorianCalendar();
String strDateTime="["+String.format("%04d", nowtime.get(Calendar.YEAR))+"/"+
String.format("%02d", nowtime.get(Calendar.MONTH))+"/" +
String.format("%02d", nowtime.get(Calendar.DATE))+" " +
String.format("%02d", nowtime.get(Calendar.HOUR))+":" +
String.format("%02d", nowtime.get(Calendar.MINUTE))+":" +
String.format("%02d", nowtime.get(Calendar.SECOND))+"." +
String.format("%03d", nowtime.get(Calendar.MILLISECOND))+"]";
System.out.println(strDateTime); //method 2
String msg="";
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("YYYY/MM/dd HH:mm:ss.SSS");
msg+="["+sdf.format(date)+"]"; System.out.println(msg);
}
}
运行结果:
[2013/08/09 05:54:32.578]
[2013/09/09 17:54:32.625]
到此这篇关于Java输出系统当前的日期(年月日时分秒毫秒)就介绍到这了。青春——人的一生中最美好年岁。它是一个人的生命含苞待放的时期,生机勃发朝气蓬勃;它意味着进取,意味着上升,蕴含着巨大希望的未知数。更多相关Java输出系统当前的日期(年月日时分秒毫秒)内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!