//Sample_toUpperCase.java class Sample_toUpperCase{ public static void main(String[] args){ String str1 = "AbCdEfG123XyZ"; String str2 = "AbCdEfG123XyZ"; str1 = str1.toUpperCase(); str2 = str2.toUpperCase(); System.out.println("str1 = " + str1); System.out.println("str2 = " + str2); } }
>cd ws ws>javac -encoding UTF-8 Sample_toUpperCase.java ws>java Sample_toUpperCase str1 = ABCDEFG123XYZ str2 = ABCDEFG123XYZ