java将所有的字符串转换为大写或小写

public class DaXie {
public static void main(String[] args) {
/**将所有的字符串转换成大写或小写字母并打印出来*/
String str = new String("Hello Java World");
System.out.println("原字符串:" + str + "\n");
/*使用toUpperCase()方法实现大写转换*/
String newA = str.toUpperCase();
System.out.println("大写转换:" + newA);
/*使用toLowerCase()方法实现小写转换*/
String newB = str.toLowerCase();
System.out.println("小写转换:" + newB);
  }
}
上一篇:NSCondition用法


下一篇:Arduino——My-Clock项目 发布时间:2018-12-31