Results 1 to 5 of 5
Thread: Locale with SimpleDateFormat
- 07-02-2009, 06:24 AM #1
Member
- Join Date
- Mar 2009
- Posts
- 42
- Rep Power
- 0
- 07-02-2009, 09:44 AM #2
Java Code:import java.text.*; import java.util.*; public class LocalDate { public static void main(String[] args) { String pattern = "hhmm ddMMMyyy"; Locale[] locales = { Locale.CHINA, Locale.CHINESE, Locale.ITALY, Locale.ITALIAN, Locale.JAPAN, Locale.JAPANESE }; for(int i = 0; i < locales.length; i++) { DateFormat df = new SimpleDateFormat(pattern, locales[i]); System.out.printf(" %s: %s%n", locales[i].getDisplayName(), df.format(new Date())); } } }
- 07-02-2009, 09:46 AM #3
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
I'm not clear what you exactly talking about here. Seems to me is the following.
SimpleDateFormat class have a constructor as follows.
So I guess you have mess-up with Local object. Did you read the Java doc related to that? Here Locale object represent a specific geographical location. You can find around 20 Local fields in the Java doc, sorry I didn't remember exact figures here.Java Code:SimpleDateFormat(String pattern, Locale locale)
Is that what you are looking for?
- 07-02-2009, 12:01 PM #4
Member
- Join Date
- Mar 2009
- Posts
- 42
- Rep Power
- 0
:) Ya this was the same thing i m looking for...
Thanks...
- 07-02-2009, 02:34 PM #5
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
You got a nice example from harwired as well.
Similar Threads
-
How to use SimpleDateFormat in J2ME Applications
By thirupathik in forum CDC and Personal ProfileReplies: 9Last Post: 08-13-2010, 08:18 PM -
Using SimpleDateFormat
By Java Tip in forum Java TipReplies: 1Last Post: 07-18-2008, 08:33 AM -
Locale example
By Java Tip in forum Java TipReplies: 0Last Post: 01-29-2008, 09:04 AM -
How ro change the locale of JVM
By ravi.ks007@hotmail.com in forum Advanced JavaReplies: 2Last Post: 12-26-2007, 06:17 AM -
Locale
By Java Tip in forum Java TipReplies: 0Last Post: 11-16-2007, 02:16 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks