ResourceBundle.getBundle(String baseName, Locale locale) has the following syntax.
public static final ResourceBundle getBundle(String baseName, Locale locale)
In the following code shows how to use ResourceBundle.getBundle(String baseName, Locale locale) method.
import java.util.Locale; import java.util.ResourceBundle; /*from w ww .j a v a 2s . c o m*/ public class Main { public static void main(String[] args) { ResourceBundle bundle = ResourceBundle.getBundle("hello", Locale.US); System.out.println(bundle.getString("hello")); } }