Default locale supporting Euro ?
The default locale for the JVM is obtained from the host environment. You can check this via Locale.getDefault();
How do I need to configure Windows (NT / 2000) so that the JVM will recognize the EURO variant of a locale, e.g. "de_DE_EURO" i.s.o. "de_DE" ?
Or are those Euro specific locales only meant to be set and used in Java programs, e.g. with Locale.setDefault(); ?

