- 输出日期: intmonth=cal.get(Calendar.MONTH);//获取当前是几月while(month==cal.get(Calendar.MONTH)){//循环中会对日期不断增加,当增加到下个月时就跳出循环intday=cal.get(Calendar.DAY_OF_MONTH);//获取当前日期if(day<10){//如果日期小于10,在前面加前导空格(填充补位的作用)sb.append(" "+da...
可以使用System.out.println()方法将日期时间打印到控制台。 publicclassCurrentDateTimeExample{publicstaticvoidmain(String[]args){DatecurrentDate=newDate();System.out.println("Current Date Time: "+currentDate.toString());CalendarcurrentDateTime=Calendar.getInstance();intyear=currentDateTime.get(Calendar.YEAR...
第三种方式使用了SimpleDateFormat类来格式化日期和时间,第四种方式使用了Java 8中的新类库LocalDateTime来...
最后,我们可以使用System.out.println()方法来打印格式化后的日期时间字符串。 // 打印格式化后的日期时间字符串System.out.println("当前日期时间:"+formattedDateTime); 1. 2. 完整代码示例 下面是完整的代码示例: importjava.text.SimpleDateFormat;importjava.util.Date;publicclassPrintCurrentDateTime{publicstatic...
//日期格式化打印 Date d =newDate(); SimpleDateFormat sdf =newSimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String dateNowStr = sdf.format(d); System.out.println("格式化后的日期:"+ dateNowStr); //字符串解析为日期 String str ="2014-9-1 13:08:28"; ...
打印本月日期: packagecom.javatest.datetest;importjava.time.*;/* * @version 1.0 * @author Tan name * 该类功能可实现打印本月的日期 */publicclassDateTest{publicstaticvoidmain(String[] args){//创建date对象LocalDatedate=LocalDate.now();//获取月份intmonth=date.getMonthValue();//获取日期inttod...
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式 System.out.println(df.format(new Date()));// new Date()为获取当前系统时间
在Java中容易得到当前的日期和时间。可以使用一个简单的Date对象的toString()方法,如下所示打印当前日期和时间: importjava.util.Date;publicclassDateDemo{publicstaticvoidmain(Stringargs[]){// Instantiate a Date objectDatedate=newDate();// display time and date using toString()System.out.println(date.to...
DateFormat df = new SimpleDateFormat("yyyy/MM/dd");String formattedDate = df.format(date);System.out.println(formattedDate);在这个例子中,我们首先创建了一个Date对象来获取当前日期。然后,我们使用SimpleDateFormat来定义日期格式,并将当前日期格式化为字符串。最后,我们打印出格式化后的日期...
楼上回答的很详细了,他的例子本来我也想拷给你。但是他的比我的详细。我也学到了一点。谢谢楼上。。。SimpleDateFormat 是设置你要打印的格式的,你可以选取一个就行了。