Java toUpperCase() 方法

toUpperCase() 方法将字符串小写字符转换为大写。

语法

  1. public String toUpperCase()
  2. public String toUpperCase(Locale locale)

参数

返回值

字符转换为大写后的字符串。

实例

  1. import java.lang.*;
  2. import java.util.*;
  3. public class Test {
  4. public static void main(String args[]) {
  5. String Str = new String("www.baidu.com");
  6. // using the default system Locale
  7. Locale locale = Locale.getDefault();
  8. System.out.print("返回值 :" );
  9. System.out.println( Str.toUpperCase() );
  10. System.out.print("返回值 :" );
  11. System.out.println( Str.toLowerCase(locale) );
  12. }
  13. }

以上程序执行结果为:

  1. 返回值 :WWW.BAIDU.COM