1 问题
有时在要求用户输入大写字符时,用户会错误输入小写字符,利用大小写字符的转换,可以避免用户的重复输入,导致的体验感差的问题。
2 方法
java中String类中的toLowerCase()和toUpperCase()方法分别能够将字符串中的字母转换为小写和大写 public static void main(String[] ags){ String s = "helloworld"; System.out.println(s.toLowerCase()); //输出"helloworld" System.out.println(s.toUpperCase()); //输出"HELLOWORD" } 除此之外,java.lang中Character类的toLowerCase(Char ch)和toUpperCase(Char ch)方法分别能对字符进行大小写转换。 public static void main(String[] ags){ Char a='HELLOWORLD'; Char b='helloworld'; System.out.println(Character.toLowerCase(a)); //输出"helloworld" System.out.println(Character.toUpperCase(b)); //输出"HELLOWORLD" } |
3 结语
通过以上两种方法均可实现字符串大小写的转换,在所需代码中利用其中一种方法即可实现字符串大小写的转换,让代码更加的完美,减少用户的多次繁琐操作,增加用户的体验感。