Java String to Uppercase With Examples

Java String to uppercase conversion can be done using toUpperCase() method.

Java String to UpperCase

  • Java String toUpperCase() method has two variants – toUpperCase() and toUpperCase(Locale locale).
  • Conversion of the characters to upper case is done by using the rules of default locale. Calling toUpperCase() function is same as calling toUpperCase(Locale.getDefault()).
  • Java String to upper case method is locale sensitive, so use it carefully with strings that are intended to be used locale independent. For example programming language identifiers, HTML tags, protocol keys etc. Otherwise you might get unwanted results.
  • To get correct upper case results for locale insensitive strings, use toUpperCase(Locale.ROOT) method.
  • String toUpperCase() returns a new string, so you will have to assign that to another string. The original string remains unchanged because String is immutable.
  • If locale is passed as null to toUpperCase(Locale locale) method, then it will throw NullPointerException.

Java String to Uppercase Example

Let’s see a simple example to convert a string to upper case and print it.

We can also use Scanner class to get user input and then convert it to uppercase and print it.

Here is a complete example program to convert java string to uppercase and print it.

Below console output shows the sample execution of above program.

That’s all for java string to uppercase conversion example.

Reference: API Doc

By admin

Leave a Reply

%d bloggers like this: