JAVA实现对字符串的大小写的转换

package com.jalor;

public class TKY_20180622 {

	public static void main(String[] args) {
		String str = "LeNian";
		// 大写转小写
		System.out.println(str.toLowerCase());
		// 小写转大写
		System.out.println(str.toUpperCase());
	}
}

你可能感兴趣的:(JAVA实现对字符串的大小写的转换)