本文整理汇总了Java中java.time.LocalDateTime.getDayOfMonth方法的典型用法代码示例。如果您正苦于以下问题:Java LocalDateTime.getDayOfMonth方法的具体用法?Java LocalDateTime.getDayOfMonth怎么用?Java LocalDateTime.getDayOfMonth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.time.LocalDateTime
的用法示例。
在下文中一共展示了LocalDateTime.getDayOfMonth方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: writeDateTimeUntil
import java.time.LocalDateTime; //导入方法依赖的package包/类
public static void writeDateTimeUntil(LocalDateTime dateTime, ByteArrayOutputStream bos) {
// this is frigging confusing.. who the hell did think about this...
// the first three bits are the months
// next five bits are the day
// next bit is always 0
// next bit is the month again (the very first one)
// next bit is always 0
// last five bits are the year
// only the first three bits!
// int month = (positiveFirst >> 5 << 1) + (64 >> 6 & 1);
int month = dateTime.getMonthValue();
int monthAndDay = (month << 4 & 224) + dateTime.getDayOfMonth();
bos.write(monthAndDay);
int monthAndYear = (month % 2 == 1 ? 128 : 0) + (dateTime.getYear() - 2000);
bos.write(monthAndYear);
int halfhours = (dateTime.getHour() * 2) + (dateTime.getMinute() == 30 ? 1 : 0);
bos.write(halfhours);
}
示例2: javaToDosTime
import java.time.LocalDateTime; //导入方法依赖的package包/类
/**
* Converts Java time to DOS time.
*/
private static long javaToDosTime(long time) {
Instant instant = Instant.ofEpochMilli(time);
LocalDateTime ldt = LocalDateTime.ofInstant(
instant, ZoneId.systemDefault());
int year = ldt.getYear() - 1980;
if (year < 0) {
return (1 << 21) | (1 << 16);
}
return (year << 25 |
ldt.getMonthValue() << 21 |
ldt.getDayOfMonth() << 16 |
ldt.getHour() << 11 |
ldt.getMinute() << 5 |
ldt.getSecond() >> 1) & 0xffffffffL;
}
示例3: formatLocalName
import java.time.LocalDateTime; //导入方法依赖的package包/类
@SideOnly(Side.CLIENT)
public String formatLocalName(Component sub) {
LocalDateTime time = LocalDateTime.now();
if(time.getMonth() == Month.APRIL && time.getDayOfMonth() == 1) {
return "April Fools!";
}
String format = I18n.format(RandoresKeys.FORMAT);
String name = this.getName();
String compName = sub.getLocalName();
return format.replace("${name}", name).replace("${item}", compName);
}
示例4: getNormalDate
import java.time.LocalDateTime; //导入方法依赖的package包/类
/**
* Returns String representing given LocalDateTime.
*
* @param date to format
* @return date as string
*/
public static String getNormalDate(LocalDateTime date, int type) {
String returnString = date.getDayOfMonth() + " " + date.getMonth().toString().substring(0, 1).toUpperCase();
return returnString + (type == SHORT_DATE ?
date.getMonth().toString().substring(1, 3).toLowerCase() :
date.getMonth().toString().substring(1).toLowerCase()) +
" " + date.getYear();
}
示例5: dateFormatterForLogs
import java.time.LocalDateTime; //导入方法依赖的package包/类
private static String dateFormatterForLogs(LocalDateTime dateTime) {
String dateString = "[";
dateString += dateTime.getDayOfMonth() + "_";
dateString += dateTime.getMonthValue() + "_";
dateString += dateTime.getYear() + "_";
dateString += dateTime.getHour() + ":";
dateString += dateTime.getMinute() + ":";
dateString += dateTime.getSecond();
dateString += "] ";
return dateString;
}
示例6: splitDatesIntoMonths
import java.time.LocalDateTime; //导入方法依赖的package包/类
public static List<Date[]> splitDatesIntoMonths(Date from, Date to) throws IllegalArgumentException {
List<Date[]> dates = new ArrayList<>();
LocalDateTime dFrom = asLocalDateTime(from);
LocalDateTime dTo = asLocalDateTime(to);
if (dFrom.compareTo(dTo) >= 0) {
throw new IllegalArgumentException("Provide a to-date greater than the from-date");
}
while (dFrom.compareTo(dTo) < 0) {
// check if current time frame is last
boolean isLastTimeFrame = dFrom.getMonthValue() == dTo.getMonthValue() && dFrom.getYear() == dTo.getYear();
// define day of month based on timeframe. if last - take boundaries from end date, else end of month and date
int dayOfMonth = isLastTimeFrame ? dTo.getDayOfMonth() : dFrom.with(TemporalAdjusters.lastDayOfMonth()).getDayOfMonth();
LocalTime time = isLastTimeFrame ? dTo.toLocalTime() : LocalTime.MAX;
// build timeframe
Date[] dar = new Date[2];
dar[0] = asDate(dFrom);
dar[1] = asDate(dFrom.withDayOfMonth(dayOfMonth).toLocalDate().atTime(time));
// add current timeframe
dates.add(dar);
// jump to beginning of next month
dFrom = dFrom.plusMonths(1).withDayOfMonth(1).toLocalDate().atStartOfDay();
}
return dates;
}
示例7: getDateIdFromTimestamp
import java.time.LocalDateTime; //导入方法依赖的package包/类
public static int getDateIdFromTimestamp(long millis)
{
int result;
Instant i = Instant.ofEpochMilli(millis);
LocalDateTime ldt = LocalDateTime.ofInstant(i, ZoneId.of("UTC") ); //ZoneId.systemDefault()
int year = ldt.getYear();
int month = ldt.getMonth().getValue();
int day = ldt.getDayOfMonth();
result = day + (100 * month) + (10000 * year);
return result;
}
示例8: decodeNotNull
import java.time.LocalDateTime; //导入方法依赖的package包/类
@Override
public Object decodeNotNull(int flag, CodecDataInput cdi) {
long val = IntegerType.decodeNotNullPrimitive(flag, cdi);
LocalDateTime localDateTime = fromPackedLong(val);
if (localDateTime == null) {
return null;
}
//TODO revisit this later.
return new Date(localDateTime.getYear() - 1900,
localDateTime.getMonthValue() - 1,
localDateTime.getDayOfMonth());
}
示例9: javaToDosTime
import java.time.LocalDateTime; //导入方法依赖的package包/类
public static long javaToDosTime(long time) {
Instant instant = Instant.ofEpochMilli(time);
LocalDateTime ldt = LocalDateTime.ofInstant(
instant, ZoneId.systemDefault());
int year = ldt.getYear() - 1980;
if (year < 0) {
return (1 << 21) | (1 << 16);
}
return (year << 25 |
ldt.getMonthValue() << 21 |
ldt.getDayOfMonth() << 16 |
ldt.getHour() << 11 |
ldt.getMinute() << 5 |
ldt.getSecond() >> 1) & 0xffffffffL;
}
示例10: DateTimeParameterObject
import java.time.LocalDateTime; //导入方法依赖的package包/类
DateTimeParameterObject(final LocalDateTime localDateTime, @Nullable final String pattern) {
this.localDateTime = localDateTime;
this.pattern = Optional.ofNullable(pattern);
this.dayOfMonth = localDateTime.getDayOfMonth();
this.month = localDateTime.getMonthValue();
this.year = localDateTime.getYear();
this.hour = localDateTime.getHour();
this.minute = localDateTime.getMinute();
this.second = localDateTime.getSecond();
this.instant = localDateTime.atZone(ZoneId.systemDefault()).toEpochSecond();
}
示例11: isNeededToLaunch
import java.time.LocalDateTime; //导入方法依赖的package包/类
/**
* Vérifie si le batch doit être lancé grace a son schedul
*
* @param batch
* @param lastExec
* @return true si le batch doit etre lance ou non
*/
private Boolean isNeededToLaunch(Batch batch, LocalDateTime lastExec) {
/* Vérification si le batch doit etre lancé immediatement */
if (batch.getTemIsLaunchImediaBatch()) {
batch.setTemIsLaunchImediaBatch(false);
batchRepository.saveAndFlush(batch);
return true;
}
LocalDateTime now = LocalDateTime.now();
/* Vérification si le batch doit etre lancé à une date précise */
if (batch.getFixeYearBatch() != null && batch.getFixeMonthBatch() != null && batch.getFixeDayBatch() != null) {
if (now.getYear() != batch.getFixeYearBatch() || now.getMonth().getValue() != batch.getFixeMonthBatch()
|| now.getDayOfMonth() != batch.getFixeDayBatch()) {
return false;
}
}
/*
* Vérification si le batch doit etre lancé annuelement avec un mois donné et un
* jour donné
*/
if (batch.getFixeMonthBatch() != null && batch.getFixeDayBatch() != null) {
if (now.getMonth().getValue() != batch.getFixeMonthBatch()
|| now.getDayOfMonth() != batch.getFixeDayBatch()) {
return false;
}
}
/* Vérification si le batch doit etre lancé mensuelement avec un jour donné */
else if (batch.getFixeDayBatch() != null) {
if (now.getDayOfMonth() != batch.getFixeDayBatch()) {
return false;
}
}
/*
* Sinon vérification si le batch doit etre lancé hebdo avec les journs précisés
*/
else {
DayOfWeek today = now.getDayOfWeek();
if (!batch.getTemLundiBatch() && today.getValue() == 1) {
return false;
} else if (!batch.getTemMardiBatch() && today.getValue() == 2) {
return false;
} else if (!batch.getTemMercrBatch() && today.getValue() == 3) {
return false;
} else if (!batch.getTemJeudiBatch() && today.getValue() == 4) {
return false;
} else if (!batch.getTemVendrediBatch() && today.getValue() == 5) {
return false;
} else if (!batch.getTemSamediBatch() && today.getValue() == 6) {
return false;
} else if (!batch.getTemDimanBatch() && today.getValue() == 7) {
return false;
}
}
logger.trace("OK à lancer aujourd'hui");
if ((batch.getFixeHourBatch().isAfter(lastExec.toLocalTime()))
&& batch.getFixeHourBatch().isBefore(now.toLocalTime())) {
logger.trace("OK à lancer maintenant");
return true;
}
return false;
}
示例12: isAprilFools
import java.time.LocalDateTime; //导入方法依赖的package包/类
public static boolean isAprilFools() {
LocalDateTime now = LocalDateTime.now();
return now.getDayOfMonth()==1 && now.getMonth()==Month.APRIL;
}
示例13: testDateTimeInfo
import java.time.LocalDateTime; //导入方法依赖的package包/类
/**
* 获取时间节点的详细信息
*/
@Test
public void testDateTimeInfo(){
LocalDateTime ldt = LocalDateTime.now();
// 获取当前的年份
int year = ldt.getYear();
System.out.println(year);
// 当前年中的第几天
int dayOfYear = ldt.getDayOfYear();
System.out.println(dayOfYear);
// 当前月份中的第几天
int dayOfMonth = ldt.getDayOfMonth();
System.out.println(dayOfMonth);
// 当前周中的第几天
DayOfWeek dayOfWeek = ldt.getDayOfWeek();
int dayOfWeekValue = dayOfWeek.getValue();
System.out.println(dayOfWeekValue);
// 获取小时
int hour = ldt.getHour();
System.out.println(hour);
// 获取月份信息
Month month = ldt.getMonth();
int monthValue = month.getValue();
System.out.println(monthValue);
int ldtMonthValue = ldt.getMonthValue();
System.out.println(ldtMonthValue);
// 获取分钟
int minute = ldt.getMinute();
System.out.println(minute);
}
示例14: valueOf
import java.time.LocalDateTime; //导入方法依赖的package包/类
/**
* Obtains an instance of {@code Timestamp} from a {@code LocalDateTime}
* object, with the same year, month, day of month, hours, minutes,
* seconds and nanos date-time value as the provided {@code LocalDateTime}.
* <p>
* The provided {@code LocalDateTime} is interpreted as the local
* date-time in the local time zone.
*
* @param dateTime a {@code LocalDateTime} to convert
* @return a {@code Timestamp} object
* @exception NullPointerException if {@code dateTime} is null.
* @since 1.8
*/
@SuppressWarnings("deprecation")
public static Timestamp valueOf(LocalDateTime dateTime) {
return new Timestamp(dateTime.getYear() - 1900,
dateTime.getMonthValue() - 1,
dateTime.getDayOfMonth(),
dateTime.getHour(),
dateTime.getMinute(),
dateTime.getSecond(),
dateTime.getNano());
}