import java.util.Date;标签:...,Java,String,第几天,strDate,tj,Date,public From: https://blog.51cto.com/softo/6022983
public class whichDay {
public static void main(String[] args) {
//获取系统时间
Date date =new Date();
//%tj表示一年中的第几天
String strDate =String.format("今天是今年的第%tj天!2011.12.04 Sunday By friendan!",date);
//输出时间
System.out.println(strDate);
}
}