mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-2966 add dateToString taking a TimeZone
X-SVN-Rev: 12839
This commit is contained in:
parent
2b85f8d379
commit
5b8c96790b
2 changed files with 20 additions and 0 deletions
|
@ -152,6 +152,25 @@ CalendarTimeZoneTest::dateToString(UDate d, UnicodeString& str)
|
|||
return str;
|
||||
}
|
||||
|
||||
UnicodeString&
|
||||
CalendarTimeZoneTest::dateToString(UDate d, UnicodeString& str,
|
||||
const TimeZone& tz)
|
||||
{
|
||||
str.remove();
|
||||
DateFormat* format = getDateFormat();
|
||||
if (format == 0)
|
||||
{
|
||||
str += "DATE_FORMAT_FAILURE";
|
||||
return str;
|
||||
}
|
||||
TimeZone* save = format->getTimeZone().clone();
|
||||
format->setTimeZone(tz);
|
||||
format->format(d, str);
|
||||
format->adoptTimeZone(save);
|
||||
releaseDateFormat(format);
|
||||
return str;
|
||||
}
|
||||
|
||||
// Utility methods to create a date. This is useful for converting Java constructs
|
||||
// which create a Date object.
|
||||
UDate
|
||||
|
|
|
@ -33,6 +33,7 @@ protected:
|
|||
// Tries to mimic the Java Date.toString() format.
|
||||
UnicodeString dateToString(UDate d);
|
||||
UnicodeString& dateToString(UDate d, UnicodeString& str);
|
||||
UnicodeString& dateToString(UDate d, UnicodeString& str, const TimeZone& z);
|
||||
|
||||
// Utility methods to create a date. This is useful for converting Java constructs
|
||||
// which create a Date object. Returns a Date in the current local time.
|
||||
|
|
Loading…
Add table
Reference in a new issue