20230829工作心得:如何把大List 切割为多个小List?

1 怎么看这个方法谁在调用它?

解决:按ctrl,然后点进去看。

idea里看方法的具体细节,和谁在调用这个方法,都可以通过按ctrl,然后单击查看。

2 请求的时候,如果时间yyyy-MM-dd HH:mm:ss在url里会报错?有非法字符。

解决:可以在空格的位置拼上%20,像这样:

//这里date是LocalDateTime格式

date.format(DateTimeFormatter.ofPattern("yyyy-MM-dd%20HH:mm:ss")))

3 string 变 integer 。不要强转 。

解决:

Integer.valueOf("string字符串");

//或者

Integer.parseInt("string字符串");//这个结果是int,但你也可以直接赋值给Integer对象,因为Java5之后,就引用了自动装箱和拆箱。

4 修改原list .lambda表达式

优雅解决 : 更新list里每个Person对象的age

// 假设有一个包含Person对象的列表

List<Person> updatedList = personList.stream() .map(a -> { a.setAge(1); return a; }) .collect(Collectors.toList());

注意:如果这样写,就是把list里每个对象的age提取出来,变成list

// 假设有一个包含Person对象的列表

List<Person> updatedList = personList.stream() .map(a -> a.getAge()) .collect(Collectors.toList());

5 把大List 切割为 更小尺寸的小List?

优雅解决 : Lists.partition(原list,目标数量)

import com.google.common.collect.Lists;

// 原始列表

List<Integer> originalList = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15);

// 子列表长度

int partitionSize = 100;

List<List<Integer>> subLists = Lists.partition(originalList, partitionSize);

// 输出切割后的子列表

for (List<Integer> subList : subLists) {

System.out.println(subList);

}

6 配置信息要记录一下,修改哪些@Value以及XXL_JOB相关参数。

7 时间 每10分钟执行,XXL_JOB传参

startTime = LocalDateTime.now().minusMinutes(11);

endTime = LocalDateTime.now();

昨天文章提到《20230828工作日志》,要用JSON格式化工具看JSON字符串结果,

8 除此以外,要擅用 ctrl+F 搜索,有没有某个字段,而不是用眼睛在哪瞅

相关推荐
玖釉-6 小时前
Vulkan 离屏渲染详解:从 Framebuffer 到后处理、阴影贴图与 Render Texture
c++·windows·计算机视觉·图形渲染
拾贰_C6 小时前
【python | installation 】python 安装 | Windows | 命令使用
linux·数据库·ubuntu
机汇五金_6 小时前
影响交换机箱体使用寿命的几个关键因素
运维·服务器·网络·python
bkspiderx6 小时前
Boa Web服务器HTTPS支持的源码改造方案
服务器·前端·https·web服务器·boa·https支持
峰上踏雪6 小时前
Windows 下最推荐的 Qt + VS2026 + CMake 开发方案
开发语言·windows·qt
无限进步_6 小时前
Linux进程终止——退出码、exit与_exit
linux·运维·服务器
编程大师哥7 小时前
最高效的 IO 并发方案
linux·网络·python
炘爚7 小时前
phase1:基础框架——编译 + MySQL + 登录/注册
linux·c++
小蜗子7 小时前
Windows 11 + RTX 5060 + WSL2 Ubuntu + NVIDIA DGL 容器
linux·运维·ubuntu
s_nshine7 小时前
释放C盘,迁移studio相关数据到其他盘
android·windows·android studio·内存·c盘