Java中的LocalDate类的getLong()方法在此日期适用。
用法:
public long getLong(TemporalField field)
参数:此方法接受一个必填参数字段,该字段指定要获取的字段,而不是null。
返回值:该函数返回该字段的值。
异常:该程序引发三个异常,如下所述:
- DateTimeException:如果无法获取该字段的值或该值超出该字段的有效值范围,则抛出该错误。
- UnsupportedTemporalTypeException:如果不支持该字段或值的范围超过一长整数,则抛出该异常。
- ArithmeticException:如果发生数字溢出则抛出
以下示例程序旨在说明Java中LocalDate的getLong()方法:
程序1:
// Program to illustrate the getLong() method
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoField;
public class GfG {
public static void main(String[] args)
{
// Parses the date
LocalDate dt = LocalDate.parse("2018-11-27");
// Prints the day number
System.out.println(dt.getLong(ChronoField.DAY_OF_MONTH));
}
}
输出:
27
程序2:
// Program to illustrate the getLong() method
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoField;
public class GfG {
public static void main(String[] args)
{
// Parses the date
LocalDate dt = LocalDate.parse("2018-11-27");
// Prints the day number
System.out.println(dt.getLong(ChronoField.DAY_OF_YEAR));
}
}
输出:
331
程序3:
// Program to illustrate the getLong() method
// Exception Program
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoField;
public class GfG {
public static void main(String[] args)
{
try {
LocalDate dt = LocalDate.parse("2017-01-32");
System.out.println(dt.getLong(ChronoField.DAY_OF_MONTH));
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
java.time.format.DateTimeParseException: Text '2017-01-32' could not be parsed: Invalid value for DayOfMonth (valid values 1 - 28/31): 32
相关用法
- Java ZonedDateTime getLong()用法及代码示例
- Java OffsetTime getLong()用法及代码示例
- Java Field getLong()用法及代码示例
- Java OffsetDateTime getLong()用法及代码示例
- Java ChronoLocalDate getLong()用法及代码示例
- Java MonthDay getLong()用法及代码示例
- Java LocalTime getLong()用法及代码示例
- Java ChronoLocalDateTime getLong()用法及代码示例
- Java Instant getLong()用法及代码示例
- Java ChronoZonedDateTime getLong()用法及代码示例
- Java Year getLong()用法及代码示例
- Java ByteBuffer getLong()用法及代码示例
- Java ZoneOffset getLong(TemporalField)用法及代码示例
- Java LocalDate now()用法及代码示例
- Java LocalDate get()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 LocalDate getLong() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。