我有点卡在日期和时间上。我希望我的程序创建像“20121217”这样的日期。前 4 个字母是年份,后 2 个字母是月份,最后 2 个字母是日期。年+月+日
时间为“112233”时+分+秒
谢谢你的帮助!
我有点卡在日期和时间上。我希望我的程序创建像“20121217”这样的日期。前 4 个字母是年份,后 2 个字母是月份,最后 2 个字母是日期。年+月+日
时间为“112233”时+分+秒
谢谢你的帮助!
那是格式问题。Java 使用java.util.Date
andjava.text.DateFormat
来java.text.SimpleDateFormat
处理这些事情。
DateFormat dateFormatter = new SimpleDateFormat("yyyyMMdd hhmmss");
dateFormatter.setLenient(false);
Date today = new Date();
String s = dateFormatter.format(today);
你可以这样做:
Calendar c = Calendar.getInstance();
String date = c.get(Calendar.YEAR) + c.get(Calendar.MONTH) + c.get(Calendar.DATE);
String time = c.get(Calendar.HOUR) + c.get(Calendar.MINUTE) + c.get(Calendar.SECOND);
根据需要更改任何特定的时间或日期格式。
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd_HHmmss");
currentDateandTime = sdf.format(new Date());
日期:
DateFormat df = new SimpleDateFormat("yyyyMMdd");
String strDate = df.format(new Date());
对于时间:
DateFormat df = new SimpleDateFormat("hhmmss");
String strTime = df.format(new Date());
这行得通,
String currentDateTime;
SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
currentDateTime = sdf1.format(new Date());
您正在寻找的是 Java 中的 SimpleDateFormat...看看这个页面。
根据您的需要试试这个:
SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd hhmmss");
Date parsed = format.parse(new Date());
System.out.println(parsed.toString());
您可以使用以下方法获取当前时间
/**************************************************************
* getCurrentTime() it will return system time
*
* @return
****************************************************************/
public static String getCurrentTime() {
DateFormat dateFormat = new SimpleDateFormat("yyyyMMdd HHmmss");
Calendar cal = Calendar.getInstance();
return dateFormat.format(cal.getTime());
}// end of getCurrentTime()