简体   繁体   English

如何将 append 和 arraylist 逐行写入 txt 文件?

[英]How to append an arraylist line by line into a txt file?

I'm trying to add an item of an arraylist into a txt file but i need to do it line by line.我正在尝试将 arraylist 的项目添加到 txt 文件中,但我需要逐行执行。 The txt file contains names and i'm trying to add their username so i need to do add each user line by line. txt 文件包含名称,我正在尝试添加他们的用户名,所以我需要逐行添加每个用户。 This is the original txt file:这是原始的txt文件:

Smith, Will
Lothbrok, Ragnar
Skywalker, Anakin
Ronaldo, Cristiano
Messi, Lionel

This is the method i'm using:这是我正在使用的方法:

public static void addUsers(int maxLines,  List<Users> users) throws IOException {
    File f = new File("Users.txt");
    FileOutputStream fos = new FileOutputStream(f, true);
 
    BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(fos));
 
    //maxLines is just a count of the lines from the text file so i can put the limit of this loop.
    for (int i = 0; i < maxLines; i++) {
        bw.write(" > " + users.get(i).getUsername() );
        bw.newLine();
    }
 
    bw.close();
}

The result i get after this is:我得到的结果是:

Smith, Will
Lothbrok, Ragnar
Skywalker, Anakin
Ronaldo, Cristiano
Messi, Lionel
 > Will.Smith3
 > Ragnar.Lothbrok74
 > Anakin.Skywalker30
 > Cristiano.Ronaldo32
 > Lionel.Messi2

But i need it to be like:但我需要它像:

Smith, Will > Will.Smith3
Lothbrok, Ragnar > Ragnar.Lothbrok74
Skywalker, Anakin > Anakin.Skywalker30
Ronaldo, Cristiano > Cristiano.Ronaldo32
Messi, Lionel > Lionel.Messi2

I've being trying different things like putting append not write in the BufferedWriter method but it still giving the same result.我一直在尝试不同的事情,比如把 append 不写在 BufferedWriter 方法中,但它仍然给出相同的结果。 How could i do it better?我怎样才能做得更好?

  1. You should use try-with-resources to get the resource closed automatically.您应该使用try-with-resources来自动关闭资源。
  2. store lines from the file plus corresponding username into a List<String> while reading the file.在读取文件时将文件中的行加上相应的用户名存储到List<String>中。 Once the reading is completed, write the content of this list into the file.读取完成后,将此列表的内容写入文件。

Demo:演示:

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

class User {
    private String username;

    public User(String username) {
        this.username = username;
    }

    public String getUsername() {
        return username;
    }
}

public class Main {
    public static void main(String[] args) {
        // Test
        List<User> users = List.of(new User("Will.Smith3"), new User("Ragnar.Lothbrok74"),
                new User("Anakin.Skywalker30"), new User("Cristiano.Ronaldo32"), new User("Lionel.Messi2"));
        try {
            addUsers(5, users);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    static void addUsers(int maxLines, List<User> users) throws IOException {
        // List to store lines from the file plus corresponding username
        List<String> list = new ArrayList<>();

        try (BufferedReader reader = new BufferedReader(new FileReader(new File("Users.txt")))) {
            String currentLine;
            int line = 0;
            while ((currentLine = reader.readLine()) != null && line < users.size()) {
                list.add(line, currentLine + " > " + users.get(line).getUsername() + System.lineSeparator());
                line++;
            }
        }

        // Write the content of the list into the file
        try (BufferedWriter writer = new BufferedWriter(new FileWriter(new File("Users.txt")))) {
            for (String s : list) {
                writer.write(s);
            }
        }
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM