gpt4 book ai didi

java - 将整数数组转换为单个字符串

转载 作者:行者123 更新时间:2023-12-02 11:17:48 24 4
gpt4 key购买 nike

我无法找到如何使用 Java 8 从 Integer 的 arrayList 轻松构建字符串,就像这样:

[3, 22, 1, 5] to "3 22 1 5"

目前我尝试过:

List<Integer> ids = new ArrayList<Integer>();
/* ... */
String.join(" ", ((ArrayList<String>)(ids))); //cast do not work

List<Integer> ids = new ArrayList<Integer>();
/* ... */
String.join(" ", ids.forEach(id -> Integer.toString(id))); //forEach returns void so it throws an error

有人有方便/优雅的解决方案吗?

谢谢大家,祝你有美好的一天

最佳答案

您可以使用 Streams 来完成此操作

List<Integer> ids = new ArrayList<Integer>();
/* ... */
String joined= ids.stream()
.map(i -> i.toString())
.collect(Collectors.joining(" "));

关于java - 将整数数组转换为单个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57729470/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com