String test=”ABC34cccddee”; System.out.println;//小写转大写String test=”ABC34cccddee”
String test=”ABC34cccddee”; System.out.println(test.toUpperCase());//小写转大写 String test=”ABC34cccddee”; System.out.println(test.toLowerCase());大写转小写
赞
(0)
打赏
微信扫一扫
支付宝扫一扫


Java 将两个Map对象合并为一个Map对象
上一篇
2020年10月10日 13:10
java将一个字符串中的首字母转换成大写,其它的全部转换成小写
下一篇
2020年10月10日 13:12
这里是广告位
相关推荐
-
Sring Data JPA使用Predicate进行模糊查询、按时间段查询
10 : demoDTO.getSize();PageRequest pageRequest = new PageRequest;Specification<W
-
Thymeleaf——th:each遍历Map List
@RequestMappingpublic Object a3{Map<String,User> map1=new HashedMap();User user1
-
js与thymeleaf结合,js获取thymeleaf变量
<tr th:each=\"book : ${books}\"> <td th:text=\"${book.author}\"></td>