// create a new ResourceBundle with specified locale ResourceBundle bundle = ResourceBundle.getBundle("hello", Locale.US); // print the text assigned to key "hello" System.out.println("" + bundle.getString("hello"));