04 2023 档案
摘要:Java中Unicode和中文相互转换1. 什么是Unicode编码?2. 中文加密[中文字符 -> Unicode字符]3. Unicode解码[Unicode字符 -> 中文字符]4. 测试案例1. 什么是Unicode编码?快速了解什么是Unicode 2. 中文加密[中文字符 -> Unic
阅读全文
摘要:Javascript知识【jQuery选择器】 https://blog.csdn.net/m0_64550837/article/details/126231445 CSS选择器 https://blog.csdn.net/weixin_44214326/article/details/12809
阅读全文
摘要:1.Jsoup(HTML解析) https://blog.csdn.net/qq_26786441/article/details/106207828 2.Jsoup解析html https://blog.csdn.net/m0_66144992/article/details/122329560
阅读全文
摘要:背景 org.springframework.beans及org.springframework.context这两个包是Spring IoC容器的基础,其中重要的类有BeanFactory,BeanFactory是IoC容器的核心接口,其职责包括:实例化、定位、配置应用程序中的对象及建立这些对象间
阅读全文
摘要:/** * 判断字符串中是否包含中文 * * @param str 待校验字符串 * @return 是否为中文 * @warn 不能校验是否为中文标点符号 */ public static boolean isContainsChinese(String str) { if (str == nul
阅读全文