Is there a way to get the time separator symbol ':' in Java? Is it a constant somewhere or a getter? Maybe there is something equivalent to the File.separator?
My time string is returned by DateFormat.getTimeInstance(DateFormat.SHORT, locale).format(date);
Is it safe to just use ':' in this case when later somebody wants to parse this string?