- 博客(5)
- 收藏
- 关注
原创 poi 操作 excel 工具类
获取数据集合(map形式),获取title,excel合并package utils.excel;import org.apache.poi.hssf.usermodel.HSSFWorkbook;import org.apache.poi.ss.usermodel.Cell;import org.apache.poi.ss.usermodel.Row;import org.a...
2019-12-17 22:29:57 158
原创 css 选择器
W3school css选择器input, h1 标签选择器,可用逗号分隔,指定多个标签* 通配符选择器 ,* 匹配所有.class1 类选择器,定义一个css类,提供使用 class="class1"#id1 ...
2019-09-28 19:12:06 158
原创 tomcat consider increasing the maximum size of the cache
Tomcat8启动报there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache转https://gofinall.com/75.html
2019-08-23 00:05:04 295
原创 把一个数组按对角线做对称变换,并输出!
就是对二维数组做一个对角线调换数据 效果: * 转换之前: * a[0][0]=1 a[0][1]=2 a[0][2]=3 * a[1][0]=4 a[1][1]=5 a[1][2]=6 * a[2][0]=7 a[2][1]=8 a[2][2]=9 * 转换之后: * a[0][0]=9 ...
2018-04-28 18:48:55 2576
原创 使用random()随机打乱 list 中的数据
//首先创建一个有序的集合 List list = new ArrayList(); list.add(1); list.add(2); list.add(3); list.add(4); list.add(5); list.add(6); list.add(7); lis...
2018-03-10 08:31:56 6566
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人