随笔分类 -  java

摘要:思路:建临时文件夹将需要导出的数据添加到文件夹中,然后将文件夹打包以流的形式返给前端,最后将生成的文件夹以及zip包删除。 1、ZipUtil工具包 `package com.tincher.oa.common.util; import java.io.*; import java.util.Lis 阅读全文
posted @ 2022-03-18 08:50 聖凯 阅读(256) 评论(0) 推荐(0) 编辑
摘要:已使用: public static List removeDuplicate(List list) { for ( int i = 0 ; i < list.size() - 1 ; i ++ ) { for ( int j = list.size() - 1 ; j > i; j -- ) { 阅读全文
posted @ 2021-07-29 15:42 聖凯 阅读(23) 评论(0) 推荐(0) 编辑
摘要:date.getTime()所返回的是一个long型的毫秒数 1秒=1000毫秒 阅读全文
posted @ 2021-07-01 13:53 聖凯 阅读(3942) 评论(0) 推荐(1) 编辑
摘要:1、steam():把一个源数据,可以是集合,数组,I/O channel, 产生器generator 等,转化成流 2、map():用于映射每个元素到对应的结果。以下代码片段使用 map 输出了元素对应的平方数: 3、filter():filter 方法用于通过设置的条件过滤出元素。以下代码片段使 阅读全文
posted @ 2021-06-25 16:15 聖凯 阅读(100) 评论(0) 推荐(0) 编辑
摘要:![](https://img2020.cnblogs.com/blog/2172047/202106/2172047-20210616091207224-41799273.png) 阅读全文
posted @ 2021-06-16 09:13 聖凯 阅读(34) 评论(0) 推荐(0) 编辑
摘要:方式一: 方式二: @RequestMapping(value="/json",produces="application/json;charset=utf-8") 阅读全文
posted @ 2021-05-17 18:15 聖凯 阅读(122) 评论(0) 推荐(0) 编辑
摘要:更新 模糊查询 阅读全文
posted @ 2021-05-07 10:39 聖凯 阅读(165) 评论(0) 推荐(0) 编辑
摘要:if ( StringUtils.isNotEmpty(companyId)){ current = criteriaBuilder.equal(root.get("companyId"),companyId); result = criteriaBuilder.and(result,current 阅读全文
posted @ 2021-04-28 16:41 聖凯 阅读(398) 评论(0) 推荐(0) 编辑
摘要:@Query(value = "SELECT * from SYS_DEPARTMENT where DEPT_NAME like '%'||?1||'%'",nativeQuery = true) Page<SysDepartment> findByDeptNameKeyword(Pageable 阅读全文
posted @ 2021-04-28 16:22 聖凯 阅读(475) 评论(0) 推荐(0) 编辑
摘要:1、转换为字符串 int a = 1; //aStr为"1" String aStr = Convert.toStr(a); long[] b = {1,2,3,4,5}; //bStr为:"[1, 2, 3, 4, 5]" String bStr = Convert.toStr(b); 2、转换为 阅读全文
posted @ 2021-01-21 15:06 聖凯 阅读(7230) 评论(0) 推荐(0) 编辑
摘要:![](https://img2020.cnblogs.com/blog/2172047/202101/2172047-20210120162152042-1176548505.png) 阅读全文
posted @ 2021-01-20 16:22 聖凯 阅读(63) 评论(0) 推荐(0) 编辑
摘要:解决办法: vcs >Enabled Version Control Integration >Subversion 阅读全文
posted @ 2020-12-23 10:07 聖凯 阅读(236) 评论(0) 推荐(0) 编辑
摘要:返回一个指定的字符串值最后出现的位置,在一个字符串中的指定位置从后向前搜索。 stringObject.lastIndexOf(searchvalue,fromindex) | searchvalue | 必需。规定需检索的字符串值。 | | | | | | fromindex | 可选的整数参数。 阅读全文
posted @ 2020-11-09 12:42 聖凯 阅读(787) 评论(0) 推荐(0) 编辑
摘要:substring()方法:返回字符串的子字符串 public String substring(int beginIndex) public String substring(int beginIndex, int endIndex) beginIndex -- 起始索引(包括), 索引从 0 开 阅读全文
posted @ 2020-11-05 13:45 聖凯 阅读(103) 评论(0) 推荐(0) 编辑