摘要: 设字符串为String s = "Test" 转为大写字母 s = s.substring(0, 1).toUpperCase() + s.substring(1); 转为小写字母 s = s.substring(0, 1).toLowerCase() + s.substring(1); 阅读全文
posted @ 2021-05-18 19:23 acchris 阅读(823) 评论(0) 推荐(0)