如何在 JTextArea 中显示文件名 (.txt)?

How to display a filenames (.txt) in JTextArea?

此方法仅在控制台中显示文件名。

JTextArea area = new JTextArea(20,40);
public void readContent(){
    KreatorPytan kp = new KreatorPytan();

    File file = new File("D:\IT\JAVA\zadanie\Testy");
    File[] files = file.listFiles();

    for(int i = 0; i < files.length; i++){
        try {
            BufferedReader reader = null;
            reader = new BufferedReader(new FileReader(files[i]));
            if(files[i].isFile()){
                System.out.println(files[i].getName());
                area.read(reader, "File");
            }
        } catch (FileNotFoundException ex) {
            Logger.getLogger(WyborPytan.class.getName()).log(Level.SEVERE, null, ex);
        } catch (IOException ex) {
            Logger.getLogger(WyborPytan.class.getName()).log(Level.SEVERE, null, ex);
        }
    }

}

我不知道为什么这些文件名没有保存到我的 jtextarea 中。你能帮帮我吗?

此代码正在将文件读取到 JTextArea 并用下一个文件重写每个先前的文件内容。因此,您将看到最后的文件内容。如果你想获取JTextArea中的文件名,你不需要读取文件,只需要像

    for (int i = 0; i < files.length; i++) {
        area.append(files[i].getName() + '\n');
    }