将List<Long>转为List<String>格式

import java.util.List;
import java.util.stream.Collectors;

public class Main {
    public static void main(String[] args) {
        List longList = List.of(123L, 456L, 789L); // 假设这是你的Long类型列表

        // 使用Stream API将List转换为List
        List stringList = longList.stream()
                .map(Object::toString) // 将Long类型映射为String类型
                .collect(Collectors.toList()); // 将Stream转换为List

        // 打印转换后的List
        System.out.println(stringList);
    }
}

在上面的示例中,我们使用了stream()方法将List转换为Stream,然后使用map()方法将每个Long类型的元素映射为对应的String类型,最后使用collect()方法将Stream转换回List。

你可能感兴趣的:(list,数据结构)