Locale-Sensitive Java Method
java.time.LocalTime
public String format(DateTimeFormatter formatter)
Internationalization (I18n) Method Overview
format formats this LocalTime object using the specified formatter.
It is important to make sure that the formatter being used is correct for your locale.
For more information on format ,
click
here.
I18n Issues
To ensure that the correct formatter is used,
either pass in the locale when creating the formatter, or call withLocale on an existing formatter,
passing in the locale.
For more information on DateTimeFormatter ,
click
here.
Locale-Sensitive Java Methods
|