上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: 原文连接: https://blog.csdn.net/u010513756/article/details/51597934/ 在看李刚的《Java EE企业实战》,里面有一个关于Spring的配置的 <bean id="person" class="service.Person"> <!-- 控 阅读全文
posted @ 2020-07-30 09:45 rearboal 阅读(703) 评论(0) 推荐(0) 编辑
摘要: 原文链接: https://www.cnblogs.com/bretgui/p/10156141.html 1.导入依赖JAR包 <!-- jxl 操作excel --> <dependency> <groupId>org.jxls</groupId> <artifactId>jxls-jexcel 阅读全文
posted @ 2020-07-26 10:25 rearboal 阅读(773) 评论(0) 推荐(0) 编辑
摘要: package com.shine.eiuop.utils; import java.util.regex.MatchResult;import java.util.regex.Matcher;import java.util.regex.Pattern; public class ZWUtils 阅读全文
posted @ 2020-07-23 18:12 rearboal 阅读(106) 评论(0) 推荐(0) 编辑
摘要: package com.shine.eiuop.utils.Utils2; import java.io.BufferedReader;import java.io.BufferedWriter;import java.io.File;import java.io.FileInputStream;i 阅读全文
posted @ 2020-07-23 11:31 rearboal 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1:转义和不需要转义 例如: mane = (line.substring(line.indexOf("\"")+1,line.lastIndexOf("."))).trim(); mane = (line.split("\\.")[0].substring(line.split("\\.")[0] 阅读全文
posted @ 2020-07-23 03:42 rearboal 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://www.cnblogs.com/zhaoyan001/p/11737961.html 1. 循环list中的所有元素然后删除重复 public static List removeDuplicate(List list) { for ( int i = 0 ; i < li 阅读全文
posted @ 2020-07-23 03:05 rearboal 阅读(6962) 评论(0) 推荐(1) 编辑
摘要: package com.shine.eiuop.utils; import java.util.ArrayList;import java.util.regex.Matcher;import java.util.regex.Pattern; public class test { public st 阅读全文
posted @ 2020-07-23 01:57 rearboal 阅读(3026) 评论(0) 推荐(0) 编辑
摘要: package com.shine.eiuop.utils; import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;i 阅读全文
posted @ 2020-07-22 00:16 rearboal 阅读(161) 评论(0) 推荐(0) 编辑
摘要: package com.shine.eiuop.utils; import java.io.BufferedReader;import java.io.BufferedWriter;import java.io.File;import java.io.FileInputStream;import j 阅读全文
posted @ 2020-07-22 00:14 rearboal 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://www.cnblogs.com/heroine/p/5852748.html CSS的相对定位和绝对定位通常情况下,我们元素的position属性的值默认为static 就是没有定位,元素出现在正常的文档流中,,这个时候你给这个元素设置的left,right,bottom, 阅读全文
posted @ 2020-07-14 14:45 rearboal 阅读(250) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页