gpt4 book ai didi

java - 如何在 .txt 文件中存储字符串,同时不清除该文件中已有的内容 java

转载 作者:行者123 更新时间:2023-12-02 01:56:07 25 4
gpt4 key购买 nike

我目前拥有的是这个

import java.io.*;
import java.security.acl.NotOwnerException;
import java.util.Scanner;

class Main {

public static void main(String args[])
{
try{
System.out.print("Enter username: ");
Scanner scanner = new Scanner(System.in);
String username = scanner.nextLine();
System.out.print("Enter email: ");
Scanner scanner2 = new Scanner(System.in);
String email = scanner.nextLine();
System.out.print("Enter password: ");
Scanner scanner3 = new Scanner(System.in);
String password = scanner.nextLine();


// Create file
FileWriter fstream = new FileWriter("username.txt");
BufferedWriter out = new BufferedWriter(fstream);
out.write(username + ":" + email + ":" + password);
//Close the output stream
out.close();
}catch (Exception e){//Catch exception if any
System.err.println("Error: " + e.getMessage());
}
}
}

但它不断清除第一行。有没有办法让它每次添加一行而不是清除第一行?如果是这样,请有人帮助我。我正在使用 java 的 repl.it。

最佳答案

您需要打开附加标志为 true 的文件。

FileWriter fstream = new FileWriter("username.txt",true);
BufferedWriter out = new BufferedWriter(fstream);
out.write("\n" + username + ":" + email + ":" + password);

这将确保附加文件中的内容。另外,“\n”将确保每一行都打印在文件中的新行上。

关于java - 如何在 .txt 文件中存储字符串,同时不清除该文件中已有的内容 java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52260582/

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