随笔分类 - java
摘要:思路:建临时文件夹将需要导出的数据添加到文件夹中,然后将文件夹打包以流的形式返给前端,最后将生成的文件夹以及zip包删除。 1、ZipUtil工具包 `package com.tincher.oa.common.util; import java.io.*; import java.util.Lis
阅读全文
摘要:已使用: public static List removeDuplicate(List list) { for ( int i = 0 ; i < list.size() - 1 ; i ++ ) { for ( int j = list.size() - 1 ; j > i; j -- ) {
阅读全文
摘要:date.getTime()所返回的是一个long型的毫秒数 1秒=1000毫秒
阅读全文
摘要:1、steam():把一个源数据,可以是集合,数组,I/O channel, 产生器generator 等,转化成流 2、map():用于映射每个元素到对应的结果。以下代码片段使用 map 输出了元素对应的平方数: 3、filter():filter 方法用于通过设置的条件过滤出元素。以下代码片段使
阅读全文
摘要:![](https://img2020.cnblogs.com/blog/2172047/202106/2172047-20210616091207224-41799273.png)
阅读全文
摘要:方式一: 方式二: @RequestMapping(value="/json",produces="application/json;charset=utf-8")
阅读全文
摘要:if ( StringUtils.isNotEmpty(companyId)){ current = criteriaBuilder.equal(root.get("companyId"),companyId); result = criteriaBuilder.and(result,current
阅读全文
摘要:@Query(value = "SELECT * from SYS_DEPARTMENT where DEPT_NAME like '%'||?1||'%'",nativeQuery = true) Page<SysDepartment> findByDeptNameKeyword(Pageable
阅读全文
摘要: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、转换为
阅读全文
摘要:![](https://img2020.cnblogs.com/blog/2172047/202101/2172047-20210120162152042-1176548505.png)
阅读全文
摘要:解决办法: vcs >Enabled Version Control Integration >Subversion
阅读全文
摘要:返回一个指定的字符串值最后出现的位置,在一个字符串中的指定位置从后向前搜索。 stringObject.lastIndexOf(searchvalue,fromindex) | searchvalue | 必需。规定需检索的字符串值。 | | | | | | fromindex | 可选的整数参数。
阅读全文
摘要:substring()方法:返回字符串的子字符串 public String substring(int beginIndex) public String substring(int beginIndex, int endIndex) beginIndex -- 起始索引(包括), 索引从 0 开
阅读全文