gpt4 book ai didi

java - 将整数列表添加到 csv 文件中(JAVA)

转载 作者:行者123 更新时间:2023-12-02 00:58:03 25 4
gpt4 key购买 nike

我想要的只是添加算法中的数字列表(它非常长,所以我不会在这里显示它,但给出的输出为 [2039, 25553, 189030, 1449869, 134295, 352258, 1588788, 718293 , 353578, 1495712, 539563, 1691741, 1032543, 362844, 1143463, 4671463])

List<Integer> List1 = new ArrayList<>();

转换为 csv 文件并从中生成折线图。我已经搜索了一些答案,但找不到任何具体的信息。任何帮助将不胜感激,谢谢!

最佳答案

public class Try
{
public static void main(String[] args) throws IOException
{
List<Integer> List1 = new ArrayList<>();

//For the example, i populate the list
List1.add(123);
List1.add(456);
List1.add(789);

PrintWriter outFile = new PrintWriter(new FileWriter("outNumbers.csv"));

List1.stream().forEach(i->outFile.print(i + ", "));

outFile.close();
}
}

关于java - 将整数列表添加到 csv 文件中(JAVA),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61069095/

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