给出java将英文字母的大小写转化的代码
时间: 2024-02-11 11:09:16 浏览: 50
以下是Java将英文字母大小写转化的代码示例:
```java
public class Main {
public static void main(String[] args) {
// 将字符串中所有字母转换为大写
String str = "Hello World";
String upperStr = str.toUpperCase();
System.out.println(upperStr); // 输出 "HELLO WORLD"
// 将字符串中所有字母转换为小写
String lowerStr = upperStr.toLowerCase();
System.out.println(lowerStr); // 输出 "hello world"
// 处理单个字符的大小写转换
char c = 'A';
char upperC = Character.toUpperCase(c);
System.out.println(upperC); // 输出 'A'
char d = 'b';
char lowerD = Character.toLowerCase(d);
System.out.println(lowerD); // 输出 'b'
}
}
```
运行结果为:
```
HELLO WORLD
hello world
A
b
```
阅读全文