当前位置: 首页>>代码示例>>Java>>正文


Java DateTime.format方法代码示例

本文整理汇总了Java中hirondelle.date4j.DateTime.format方法的典型用法代码示例。如果您正苦于以下问题:Java DateTime.format方法的具体用法?Java DateTime.format怎么用?Java DateTime.format使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在hirondelle.date4j.DateTime的用法示例。


在下文中一共展示了DateTime.format方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: convertDateTimeToDate

import hirondelle.date4j.DateTime; //导入方法依赖的package包/类
public static Date convertDateTimeToDate(DateTime dateTime) {
	String dateString = dateTime.format("YYYY-MM-DD");
	try {
		return getDateFromString(dateString, null);
	} catch (ParseException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	}
	return null;
}
 
开发者ID:iSCAU,项目名称:iSCAU-Android,代码行数:11,代码来源:CalendarHelper.java

示例2: getDateString

import hirondelle.date4j.DateTime; //导入方法依赖的package包/类
private String getDateString(final DateTime dateTime) {
    return dateTime.format("YYYYMMDD");
}
 
开发者ID:nutritionfactsorg,项目名称:daily-dozen-android,代码行数:4,代码来源:Day.java

示例3: convertToStringList

import hirondelle.date4j.DateTime; //导入方法依赖的package包/类
public static String convertToStringList(DateTime dateTime) {
    return dateTime.format("YYYY-MM-DD");
}
 
开发者ID:maheswaranapk,项目名称:Andorid-Material-Drop-Down-Date-Picker,代码行数:4,代码来源:CalendarHelper.java

示例4: getWeekName

import hirondelle.date4j.DateTime; //导入方法依赖的package包/类
private static String getWeekName(Week week) {
	DateTime weekStart = DateTimeUtil.stringToDateTime(week.getStart());
	return "week-beginning-on-" + weekStart.format("YYYY-MM-DD");
}
 
开发者ID:mathisdt,项目名称:trackworktime,代码行数:5,代码来源:ReportsActivity.java

示例5: dateTimeToString

import hirondelle.date4j.DateTime; //导入方法依赖的package包/类
/**
 * Formats a {@link DateTime} to a String.
 * 
 * @param dateTime
 *            the input (may not be null)
 * @return the String which corresponds to the given input
 */
public static String dateTimeToString(DateTime dateTime) {
	return dateTime.format("YYYY-MM-DD hh:mm:ss.ffff");
}
 
开发者ID:mathisdt,项目名称:trackworktime,代码行数:11,代码来源:DateTimeUtil.java

示例6: dateTimeToDateString

import hirondelle.date4j.DateTime; //导入方法依赖的package包/类
/**
 * Formats a {@link DateTime} to a String which contains the date only (omitting the time part).
 * 
 * @param dateTime
 *            the input (may not be null)
 * @return the String which corresponds to the given input
 */
public static String dateTimeToDateString(DateTime dateTime) {
	return dateTime.format("YYYY-MM-DD");
}
 
开发者ID:mathisdt,项目名称:trackworktime,代码行数:11,代码来源:DateTimeUtil.java

示例7: dateTimeToHourMinuteString

import hirondelle.date4j.DateTime; //导入方法依赖的package包/类
/**
 * Formats a {@link DateTime} to a String which contains the hour and minute only (omitting the date and the
 * seconds).
 * 
 * @param dateTime
 *            the input (may not be null)
 * @return the String which corresponds to the given input
 */
public static String dateTimeToHourMinuteString(DateTime dateTime) {
	// if the format is changed here, change it also in the method getCompleteDayAsHourMinuteString()
	return dateTime.format("hh:mm");
}
 
开发者ID:mathisdt,项目名称:trackworktime,代码行数:13,代码来源:DateTimeUtil.java


注:本文中的hirondelle.date4j.DateTime.format方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。