gpt4 book ai didi

java - 格式化程序不写入文件

转载 作者:行者123 更新时间:2023-11-29 05:34:24 25 4
gpt4 key购买 nike

我正在尝试将一些字符串写入名为“file.txt”的文件,但是当我运行该程序时,什么也没有写入。如果文件不存在,它将创建文件,但不写入任何内容。

public class CreateTextFile 
{
private Formatter output;

public void openFile(String filename)
{
{
try
{
output = new Formatter(filename);
}
catch(FileNotFoundException fileNotFoundException)
{
System.err.println("Error");
}
}
}

public void addText()
{
Random randomnumber = new Random();
int lines = 1 + randomnumber.nextInt(10);

String text[] = new String[lines];

output.format("%s","Hello");

/*for (int i = 0; i < lines; i++)
{
Textline tokens = new Textline("Hello",1);
output.format("%s",tokens.toString());
}*/
}
}

最佳答案

所有格式化完成后关闭Formatter

output.close();

关于java - 格式化程序不写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20036056/

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