You can use the UIManager to set the default locale for your Swing component. Just ensure to do this before you create any Swing components.
// Reapply LookAndFeel
UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
// Directly change Swing's default Locale
UIManager.getDefaults().setDefaultLocale(Locale.US);
You can also use the below code to set the default locale for JVM.
Locale.setDefault(Locale.US);