5 Şubat 2019 Salı

DateFormat Sınıfı

Giriş
SimpleDateFormat bu sınıftan kalıtır. SimpleDateFormat sınıfını yaratmak yerine bu sınıfın getter metodları kullanılabilir.

getInstance metodu
Şöyle yaparız.
DateFormat.getInstance()
getDateInstance metodu
Şöyle yaparız.
// You can specify styles if you want
DateFormat format = DateFormat.getDateInstance();
// Set time zone information if you want.
Date date = ...;
String text = format.format(date);
getDateTimeInstance metodu
Şöyle yaparız.
DateFormat.getDateTimeInstance()
getTimeInstance metodu
Şöyle yaparız.
DateFormat.getTimeInstance()
setLenient metodu
Lenient hoşgörülü demek. Açıklaması şöyle.
Specify whether or not date/time parsing is to be lenient. With lenient parsing, the parser may use heuristics to interpret inputs that do not precisely match this object's format. With strict parsing, inputs must match this object's format.

Hiç yorum yok:

Yorum Gönder