Java examples for Swing:FlowLayout
To globally set the default locale for all Swing components in your application.
import java.util.Locale; import javax.swing.JComponent; public class Main { public static void main(String[] argv) throws Exception { // "ar" is used for Arabic locale JComponent.setDefaultLocale(new Locale("ar")); }/*w w w. j a v a 2 s. c om*/ }