I am using a Java program with foreign operating system (Korean/Japanese etc.) The display of swing components such as FileChooser is in the foreign langauges, which I need to change to English.
java.util.Locale.setDefault(java.util.Locale.ENGLISH);
JFileChooser chooser = new JFileChooser();
chooser.setLocale(Locale.ENGLISH);
And the file chooser still shows everything - buttons etc. in these foreign langauges. Any idea how to fix it?
My JFilechooser's button's OK/CANCEL are showing in Japanese. I'm using Japanese Windows. How to change that to English?