java将字符串转换为集合
时间: 2024-01-16 18:02:15 浏览: 79
java字符串与集合互相转换,字符串转List,Map,List转String,String转List源码
可以使用Java中的toUpperCase()方法将输入的小写字符串转换为大写。例如:
String str = "hello world";
String upperStr = str.toUpperCase();
System.out.println(upperStr);
输出结果为:HELLO WORLD
阅读全文