package string; public class toUpperCaseAndtoLowerCase { public static void main(String[] args) { /** * 字符串的大小写转换 */ String str = "hello World"; String strUppercase = str.toUpperCase();// 转换成大写 System.out.println(strUppercase); String strlow = str.toLowerCase();// 转换成小写 System.out.println(strlow); } }
输出结果