gpt4 book ai didi

Java,将数据写入文件并分成多行

转载 作者:行者123 更新时间:2023-12-01 10:52:32 24 4
gpt4 key购买 nike

我有一个双向链表,在该列表中我必须生成 100 个随机值。我已经这么做了。然后,我需要将双向链表的值存储到文本文件中。我也这么做了。最后,我必须格式化我的文档,例如在线有 5 个值:

提示:我将把这些行写为随机值,与顺序无关,我使用冒泡排序对它们进行排序,然后反转它们,但我需要的只是知道如何像这样放置这些值:

1 14 23 4 55 
6 39 91 1 4

etc.

我还尝试覆盖 toString 并添加了“for”和“if”,但结果失败。这是我的代码:

DLL ran = new DLL();  //this is my class named DLL
for(int i=0; i<100; i++)
{
Integer n = new Integer((int) (Math.random()*100));
ran.startValue(n); //this is my add function, to add elements in list
System.out.print(n+" ");
}

BufferedWriter out = new BufferedWriter(new FileWriter("out.txt"));

out.write(ran.toString());
out.flush();
out.close();

最佳答案

如果只是关于格式,请使用它。

for(int i=0; i<100; i++)
{
Integer n = new Integer((int) (Math.random()*100));
ran.startValue(n); //this is my add function, to add elements in list
System.out.print(n+" ");

if(i%5==0)System.out.println("");
}

但我同意@Hovercraft,你应该使用PrintWriter,它默认还提供了换行打印方法。此处无需重写 toString()

关于Java,将数据写入文件并分成多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33764844/

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