扫码一下
查看教程更方便
toLowerCase() 方法有两种形式。 将此字符串中的所有字符转换为大写。
public String toUpperCase()
// 或
public String toUpperCase(Locale locale)
locale - 语言环境
返回转换后的大写字符串
public class Main { public static void main(String args[]) { String Str = new String("Welcome to jiyik.com"); System.out.print("Return Value :"); System.out.println(Str.toUpperCase()); } }
上面示例编译运行结果如下
Return Value :WELCOME TO JIYIK.COM