gpt4 book ai didi

JAVA - 从列表创建 Excel (.csv) 格式的表格

转载 作者:行者123 更新时间:2023-12-01 17:32:42 26 4
gpt4 key购买 nike

我有一个用 java 编写的算法(太长,无法在此处发布),可以将数字列表转换为 excel csv 文档。

public static void main(String[] args) throws IOException, InterruptedException{
SimulationSystem myObj = new SimulationSystem();
List<Integer> sys1 = new ArrayList<>();

然后这一点:

        myObj.SystemAnalysis(1,20,20);
sys1.add(average);

使用不同的数字重复多次,我希望这些数字成为表的 y 和 x 。示例:

| |20|40|80|160|
20|
40| **with the answers in here**
80|
160|
        System.out.println(sys1);
PrintWriter outFile = new PrintWriter(new FileWriter("outNumbers.csv"));
sys1.stream().forEach(i->outFile.print(i + ", "));
sys2.stream().forEach(i->outFile.print(i + ", "));
outFile.close();

现在,代码生成在 csv 文件中以直线打印的列表。我如何实现这种格式?任何帮助将非常感谢,谢谢!

最佳答案

尝试在两行 forEach 之前执行 outFile.print("\n");“\n”是表示“转到下一行”的字符

关于JAVA - 从列表创建 Excel (.csv) 格式的表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61088534/

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