|
> -----Original Message----- > From: Ali Ekinci > Sent: 23 December 2003 18:23 > To: 'java400-l@xxxxxxxxxxxx' > Subject: re: date format problem, JVM not taking account of QLOCALE value > > Hi All, > I can not get JVM to get locale information from *sysval on AS400. I set > QLOCALE to one of the IBM supplied locale objects in qsys. > CHGSYSVAL SYSVAL(QLOCALE) VALUE('qsys.lib/EN_GB.locale') > When I run below java pgm, it always uses EN_US as the current locale even > though the system value points to another one. > Is there anything else to set? Can anybody tell me what I am missing? > Thanks in advance. > Ali > > Java Class TestDateFormat: > > import java.util.Date; > > import java.util.Locale; > > import java.text.SimpleDateFormat; > > > > public class TestDateFormat { > > > > > > > ////////////////////////////////////////////////////////////////////////////// > > // main > > > ////////////////////////////////////////////////////////////////////////////// > > > > public static void main(String[] pArgs) > > throws IllegalArgumentException > > { > > > > Date today; > > String dateOut; > > SimpleDateFormat dateFormatter; > dateFormatter = new SimpleDateFormat(); > > > today = new Date(); > > dateOut=dateFormatter.format(today); > > System.out.println("Default locale: " + > Locale.getDefault().getDisplayName()); > System.out.println("The current date format is : "+ > dateFormatter.toPattern()); > System.out.println("The current date is . . . .: "+ dateOut); > > > > System.exit(0); > > > > return; > > > > } > > > > } >
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.