Java String.toUpperCase(Locale locale)
Syntax
String.toUpperCase(Locale locale) has the following syntax.
public String toUpperCase(Locale locale)
Example
In the following code shows how to use String.toUpperCase(Locale locale) method.
/*from w w w . ja va 2s . c o m*/
import java.util.Locale;
public class Main {
public static void main(String[] args) {
String s = "java2s.com";
System.out.println(s.toUpperCase(Locale.getDefault()));
}
}
The code above generates the following result.