摘要:
import java.util.*; import java.text.*; public class formatDate { public formatDate() { } // 格式化日期为字符串 "yyyy-MM-dd hh:mm" ... 阅读全文
摘要:
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd"); Date date = df.parse(Console.readString("请输入个给定日期,日期格式:yyyy-MM-dd")); int num = Console.readInt("给定的日期"); System.out.println(df.format... 阅读全文
摘要:
import java.util.Date; import java.text.SimpleDateFormat; import java.util.Calendar; public class DateTest { /** * @param args */ public static void main(String[] args) throws Exception { /... 阅读全文