如何在Java中将文本附加到现有文件中?

How to append text to an existing file in Java?

提问人:flyingfromchina 提问时间:10/26/2009 最后编辑:Steve Chambersflyingfromchina 更新时间:7/19/2022 访问量:1226934

问:

我需要在 Java 中重复将文本附加到现有文件中。我该怎么做?

java 文件-io io 文本文件

评论


答:

917赞 Kip 10/26/2009 #1

您这样做是为了记录目的吗?如果是这样,有几个库可以做到这一点。其中最受欢迎的两个是 Log4jLogback

Java 7+

对于一次性任务,Files 类使这变得简单:

try {
    Files.write(Paths.get("myfile.txt"), "the text".getBytes(), StandardOpenOption.APPEND);
}catch (IOException e) {
    //exception handling left as an exercise for the reader
}

注意:如果文件尚不存在,上述方法将抛出一个。它也不会自动附加换行符(在附加到文本文件时经常需要换行符)。另一种方法是传递 both 和 options,如果文件尚不存在,它将首先创建文件:NoSuchFileExceptionCREATEAPPEND

private void write(final String s) throws IOException {
    Files.writeString(
        Path.of(System.getProperty("java.io.tmpdir"), "filename.txt"),
        s + System.lineSeparator(),
        CREATE, APPEND
    );
}

但是,如果您要多次写入同一个文件,则上述代码片段必须多次打开和关闭磁盘上的文件,这是一个缓慢的操作。在本例中,a 速度更快:BufferedWriter

try(FileWriter fw = new FileWriter("myfile.txt", true);
    BufferedWriter bw = new BufferedWriter(fw);
    PrintWriter out = new PrintWriter(bw))
{
    out.println("the text");
    //more code
    out.println("more text");
    //more code
} catch (IOException e) {
    //exception handling left as an exercise for the reader
}

笔记:

  • 构造函数的第二个参数将告诉它追加到文件,而不是写入新文件。(如果该文件不存在,则将创建该文件。FileWriter
  • 对于昂贵的编写器(例如 ),建议使用 a 。BufferedWriterFileWriter
  • 使用 a 可以访问您可能习惯的语法。PrintWriterprintlnSystem.out
  • 但是 和 包装器并不是绝对必要的。BufferedWriterPrintWriter

较旧的 Java

try {
    PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("myfile.txt", true)));
    out.println("the text");
    out.close();
} catch (IOException e) {
    //exception handling left as an exercise for the reader
}

异常处理

如果你需要对较旧的 Java 进行健壮的异常处理,它会变得非常冗长:

FileWriter fw = null;
BufferedWriter bw = null;
PrintWriter out = null;
try {
    fw = new FileWriter("myfile.txt", true);
    bw = new BufferedWriter(fw);
    out = new PrintWriter(bw);
    out.println("the text");
    out.close();
} catch (IOException e) {
    //exception handling left as an exercise for the reader
}
finally {
    try {
        if(out != null)
            out.close();
    } catch (IOException e) {
        //exception handling left as an exercise for the reader
    }
    try {
        if(bw != null)
            bw.close();
    } catch (IOException e) {
        //exception handling left as an exercise for the reader
    }
    try {
        if(fw != null)
            fw.close();
    } catch (IOException e) {
        //exception handling left as an exercise for the reader
    }
}

评论

35赞 Svetlin Zarev 1/2/2014
您应该使用 java7 try-with-resources 或将 close() 放在 finally 块中,以确保在发生异常时关闭文件
3赞 Svetlin Zarev 1/15/2014
让我们想象一下,这会引发一个异常;会关闭吗?我想它不会被关闭,因为该方法(在正常情况下)将在对象上调用,在这种情况下不会被初始化 - 所以实际上该方法不会被调用 - >文件将被打开,但不会被关闭。所以恕我直言,声明应该是这样的,他应该在退出区块之前是作者!!new BufferedWriter(...)FileWriterclose()outclose()trytry(FileWriter fw = new FileWriter("myFile.txt")){ Print writer = new ....//code goes here }flush()try
0赞 Mahdi 11/17/2014
这对我不起作用。在目标文件中,有一个“测试”和许多空白
2赞 Steve Chambers 6/1/2017
Java 7 方法的几个可能的“陷阱”:(1) 如果文件不存在,则不会创建它 - 有点像无声失败,因为它也不会抛出异常。(2) 使用 will 意味着在附加文本之前或之后没有返回字符。添加了替代答案来解决这些问题。StandardOpenOption.APPEND.getBytes()
1赞 Kip 6/4/2017
@SteveChambers 感谢您的输入。我不敢相信如果文件不存在,追加模式不会创建文件,所以我不得不尝试确认。不知道他们在想什么......我发现它实际上确实抛出了一个异常,但是如果您复制/粘贴我的代码并将块留空,那么您就不会看到它。我已经更新了我的答案以反映这些问题,并添加了指向您的答案的链接。catch
201赞 northpole 10/26/2009 #2

您可以将标志设置为 ,用于追加。fileWritertrue

try
{
    String filename= "MyFile.txt";
    FileWriter fw = new FileWriter(filename,true); //the true will append the new data
    fw.write("add a line\n");//appends the string to the file
    fw.close();
}
catch(IOException ioe)
{
    System.err.println("IOException: " + ioe.getMessage());
}

评论

10赞 Pshemo 3/14/2015
close应该放在块中,就像@etech的答案中所示,以防在创建 FileWriter 和调用 close 之间引发异常。finally
5赞 Henry Zhu 7/13/2015
很好的答案,尽管最好使用 System.getProperty( “line.separator” ) 作为换行而不是“\n”。
0赞 Kip 3/31/2016
@Decoded 我已经回滚了您对此答案的编辑,因为它无法编译。
0赞 Decoded 8/18/2016
@Kip,问题出在哪里?我一定输入了“错别字”。
4赞 php_coder_3809625 8/18/2016
如何尝试使用资源?try(FileWriter fw = new FileWriter(filename,true)){ // Whatever }catch(IOException ex){ ex.printStackTrace(); }
52赞 ripper234 12/3/2010 #3

使用 Apache Commons 2.1:

import org.apache.logging.log4j.core.util.FileUtils;

FileUtils.writeStringToFile(file, "String to append", true);

评论

7赞 Alphaaa 7/30/2013
谢谢。我被所有其他答案的复杂性逗乐了。我真的不明白为什么人们喜欢让他们的(开发人员)生活复杂化。
8赞 Buffalo 7/28/2015
这种方法的问题在于它每次都会打开和关闭输出流。根据您写入文件的内容和频率,这可能会导致荒谬的开销。
1赞 Konstantin K 3/19/2017
@Buffalo是对的。但是,在将大块写入文件之前,您始终可以使用 StringBuilder 来构建大块(值得写入)。
1赞 Rafael Membrives 8/6/2020
@KonstantinK,但随后您需要编写的所有内容都将加载到内存中。
5赞 xhudik 12/13/2012 #4

我只是添加一些小细节:

    new FileWriter("outfilename", true)

2.nd 参数 (true) 是称为 appendablehttp://docs.oracle.com/javase/7/docs/api/java/lang/Appendable.html) 的功能(或接口)。它负责能够将一些内容添加到特定文件/流的末尾。此接口从 Java 1.5 开始实现。具有此接口的每个对象(即 BufferedWriter、CharArrayWriter、CharBuffer、FileWriter、FilterWriter、LogStream、OutputStreamWriter、PipedWriter、PrintStream、PrintWriter、StringBuffer、StringBuilder、StringWriter、Writer)都可用于添加内容

换句话说,您可以向 gzip 压缩的文件或一些 http 进程添加一些内容

3赞 Benjamin Varghese 1/7/2013 #5
    String str;
    String path = "C:/Users/...the path..../iin.txt"; // you can input also..i created this way :P

    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    PrintWriter pw = new PrintWriter(new FileWriter(path, true));

    try 
    {
       while(true)
        {
            System.out.println("Enter the text : ");
            str = br.readLine();
            if(str.equalsIgnoreCase("exit"))
                break;
            else
                pw.println(str);
        }
    } 
    catch (Exception e) 
    {
        //oh noes!
    }
    finally
    {
        pw.close();         
    }

这将做你想要的..

74赞 etech 2/24/2013 #6

这里所有带有 try/catch 块的答案都不应该将 .close() 部分包含在 finally 块中吗?

标记答案示例:

PrintWriter out = null;
try {
    out = new PrintWriter(new BufferedWriter(new FileWriter("writePath", true)));
    out.println("the text");
} catch (IOException e) {
    System.err.println(e);
} finally {
    if (out != null) {
        out.close();
    }
} 

此外,从 Java 7 开始,您可以使用 try-with-resources 语句。关闭声明的资源不需要 finally 块,因为它是自动处理的,而且也不那么冗长:

try(PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("writePath", true)))) {
    out.println("the text");
} catch (IOException e) {
    System.err.println(e);
}

评论

1赞 Kip 8/22/2013
当超出范围时,当它被垃圾收集时,它会自动关闭,对吧?在您的块示例中,我认为如果我没记错的话,您实际上需要另一个嵌套的 try/catch。Java 7 解决方案非常巧妙!(自 Java 6 以来,我就没有做过任何 Java 开发,所以我不熟悉这种变化。outfinallyout.close()
2赞 Navin 6/17/2014
@Kip 不,超出范围在 Java 中没有任何作用。该文件将在将来的某个随机时间关闭。(可能在程序关闭时)
0赞 syfantid 2/14/2016
@etech 第二种方法需要该方法吗?flush
0赞 user207421 11/3/2023
这不是对问题的回答,而是对其他答案的注释,并且提供的代码无法编译。
0赞 user207421 11/3/2023
@syfantid 没有关闭调用刷新。
4赞 dantuch 6/5/2013 #7

示例,使用 Guava:

File to = new File("C:/test/test.csv");

for (int i = 0; i < 42; i++) {
    CharSequence from = "some string" + i + "\n";
    Files.append(from, to, Charsets.UTF_8);
}

评论

13赞 xehpuk 2/7/2015
这是可怕的建议。打开文件的流 42 次,而不是一次。
3赞 dantuch 2/10/2015
@xehpuk好吧,这要看情况。如果 42 使代码更具可读性,它仍然可以。42k 是不可接受的。
2赞 SharkAlley 6/18/2013 #8
FileOutputStream stream = new FileOutputStream(path, true);
try {

    stream.write(

        string.getBytes("UTF-8") // Choose your encoding.

    );

} finally {
    stream.close();
}

然后在上游的某个地方捕获 IOException。

5赞 icasdri 7/21/2013 #9

使用 java.nio。文件以及 java.nio.file。标准OpenOption

    PrintWriter out = null;
    BufferedWriter bufWriter;

    try{
        bufWriter =
            Files.newBufferedWriter(
                Paths.get("log.txt"),
                Charset.forName("UTF8"),
                StandardOpenOption.WRITE, 
                StandardOpenOption.APPEND,
                StandardOpenOption.CREATE);
        out = new PrintWriter(bufWriter, true);
    }catch(IOException e){
        //Oh, no! Failed to create PrintWriter
    }

    //After successful creation of PrintWriter
    out.println("Text to be appended");

    //After done writing, remember to close!
    out.close();

这将创建一个接受参数的 using Files,并从结果中自动刷新 。的方法,然后可以调用该方法写入文件。BufferedWriterStandardOpenOptionPrintWriterBufferedWriterPrintWriterprintln()

此代码中使用的参数:打开文件进行写入,仅追加到文件中,如果文件不存在,则创建文件。StandardOpenOption

Paths.get("path here")可以替换为 。 并且可以修改以适应所需的.new File("path here").toPath()Charset.forName("charset name")Charset

1赞 Tom Drake 8/6/2013 #10

我可能会推荐 apache commons 项目。这个项目已经提供了一个框架来做你需要的事情(即灵活的集合过滤)。

22赞 Emily L. 9/12/2013 #11

确保在所有情况下都正确关闭流。

在发生错误时,这些答案中有多少会让文件句柄保持打开状态,这有点令人震惊。https://stackoverflow.com/a/15053443/2498188 的答案是钱,但只是因为不能扔。如果可以,则异常将使对象保持打开状态。BufferedWriter()FileWriter

一种更通用的执行此操作的方法,不在乎是否可以抛出:BufferedWriter()

  PrintWriter out = null;
  BufferedWriter bw = null;
  FileWriter fw = null;
  try{
     fw = new FileWriter("outfilename", true);
     bw = new BufferedWriter(fw);
     out = new PrintWriter(bw);
     out.println("the text");
  }
  catch( IOException e ){
     // File writing/opening failed at some stage.
  }
  finally{
     try{
        if( out != null ){
           out.close(); // Will close bw and fw too
        }
        else if( bw != null ){
           bw.close(); // Will close fw too
        }
        else if( fw != null ){
           fw.close();
        }
        else{
           // Oh boy did it fail hard! :3
        }
     }
     catch( IOException e ){
        // Closing the file writers failed for some obscure reason
     }
  }

编辑:

从 Java 7 开始,推荐的方法是使用“尝试使用资源”并让 JVM 处理它:

  try(    FileWriter fw = new FileWriter("outfilename", true);
          BufferedWriter bw = new BufferedWriter(fw);
          PrintWriter out = new PrintWriter(bw)){
     out.println("the text");
  }  
  catch( IOException e ){
      // File writing/opening failed at some stage.
  }

评论

0赞 Vadzim 6/16/2015
+1 表示使用 Java 7 的正确 ARM。这是关于这个棘手主题的好问题:stackoverflow.com/questions/12552863/...
1赞 Evgeni Sergeev 11/14/2015
嗯,由于某种原因没有像文档中那样声明。从它的来源来看,该方法确实不能抛出,因为它从底层流中捕获它,并设置了一个标志。因此,如果您正在为下一个航天飞机或 X 射线剂量计量系统编写代码,您应该在尝试后使用 .这真的应该被记录下来。PrintWriter.close()throws IOExceptionclose()IOExceptionPrintWriter.checkError()out.close()
0赞 Kip 4/7/2016
如果我们要对关闭超级偏执,那么每个都应该有自己的尝试/捕捉,对吧?例如,可能会引发异常,在这种情况下,永远不会被调用,并且是关闭的最关键的异常。XX.close()out.close()bw.close()fw.close()fw
0赞 user207421 11/3/2023
“ButferedWriter”可以抛出。
2赞 Netcfmx 1/2/2014 #12

在项目中的任何位置创建一个函数,只需在需要的地方调用该函数即可。

伙计们,你们要记住,你们正在调用活动线程,而这些线程不是异步调用的,因为要正确完成它可能需要 5 到 10 页。 为什么不花更多的时间在你的项目上,而忘记写任何已经写好的东西。 适当地

    //Adding a static modifier would make this accessible anywhere in your app

    public Logger getLogger()
    {
       return java.util.logging.Logger.getLogger("MyLogFileName");
    }
    //call the method anywhere and append what you want to log 
    //Logger class will take care of putting timestamps for you
    //plus the are ansychronously done so more of the 
    //processing power will go into your application

    //from inside a function body in the same class ...{...

    getLogger().log(Level.INFO,"the text you want to append");

    ...}...
    /*********log file resides in server root log files********/

三行代码,第二行,因为第三行实际上附加了文本。:P

2赞 abSiddique 3/24/2014 #13

图书馆

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;

法典

public void append()
{
    try
    {
        String path = "D:/sample.txt";

        File file = new File(path);

        FileWriter fileWriter = new FileWriter(file,true);

        BufferedWriter bufferFileWriter  = new BufferedWriter(fileWriter);

        fileWriter.append("Sample text in the file to append");

        bufferFileWriter.close();

        System.out.println("User Registration Completed");

    }catch(Exception ex)
    {
        System.out.println(ex);
    }
}
3赞 aashima 6/29/2014 #14

你也可以试试这个:

JFileChooser c= new JFileChooser();
c.showOpenDialog(c);
File write_file = c.getSelectedFile();
String Content = "Writing into file"; //what u would like to append to the file



try 
{
    RandomAccessFile raf = new RandomAccessFile(write_file, "rw");
    long length = raf.length();
    //System.out.println(length);
    raf.setLength(length + 1); //+ (integer value) for spacing
    raf.seek(raf.length());
    raf.writeBytes(Content);
    raf.close();
} 
catch (Exception e) {
    //any exception handling method of ur choice
}
3赞 mikeyreilly 8/21/2014 #15

最好使用 try-with-resources,然后所有 java 7 之前的最终业务

static void appendStringToFile(Path file, String s) throws IOException  {
    try (BufferedWriter out = Files.newBufferedWriter(file, StandardCharsets.UTF_8, StandardOpenOption.APPEND)) {
        out.append(s);
        out.newLine();
    }
}
13赞 Tsolak Barseghyan 4/5/2015 #16

在 Java-7 中,它也可以这样做:

import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;

//---------------------

Path filePath = Paths.get("someFile.txt");
if (!Files.exists(filePath)) {
    Files.createFile(filePath);
}
Files.write(filePath, "Text to be added".getBytes(), StandardOpenOption.APPEND);

评论

2赞 Chetan Bhasin 4/12/2015
需要进口什么?这些东西使用哪个库?
0赞 user207421 11/3/2023
存在/创建部分实际上是浪费时间和空间。
0赞 BullyWiiPlaza 4/19/2015 #17

以下方法允许您将文本附加到某个文件:

private void appendToFile(String filePath, String text)
{
    PrintWriter fileWriter = null;

    try
    {
        fileWriter = new PrintWriter(new BufferedWriter(new FileWriter(
                filePath, true)));

        fileWriter.println(text);
    } catch (IOException ioException)
    {
        ioException.printStackTrace();
    } finally
    {
        if (fileWriter != null)
        {
            fileWriter.close();
        }
    }
}

或者使用 FileUtils

public static void appendToFile(String filePath, String text) throws IOException
{
    File file = new File(filePath);

    if(!file.exists())
    {
        file.createNewFile();
    }

    String fileContents = FileUtils.readFileToString(file);

    if(file.length() != 0)
    {
        fileContents = fileContents.concat(System.lineSeparator());
    }

    fileContents = fileContents.concat(text);

    FileUtils.writeStringToFile(file, fileContents);
}

它效率不高,但工作正常。换行符得到正确处理,如果换行符尚不存在,则创建一个新文件。

评论

0赞 user207421 11/3/2023
存在/创建部分实际上是浪费时间和空间。
3赞 Nadhir Titaouine 5/27/2015 #18

尝试使用 bufferFileWriter.append,它适用于我。

FileWriter fileWriter;
try {
    fileWriter = new FileWriter(file,true);
    BufferedWriter bufferFileWriter = new BufferedWriter(fileWriter);
    bufferFileWriter.append(obj.toJSONString());
    bufferFileWriter.newLine();
    bufferFileWriter.close();
} catch (IOException ex) {
    Logger.getLogger(JsonTest.class.getName()).log(Level.SEVERE, null, ex);
}

评论

0赞 Bhaskara Arani 10/12/2016
这里的obj.toJSONString()是什么?
0赞 Gherbi Hicham 10/23/2016
@BhaskaraArani 这只是一个字符串,他举了一个JSON对象转换为字符串的例子,但这个想法是它可以是任何字符串。
0赞 user207421 11/3/2023
在此处进行追加的是“true”参数,而不是“BufferedWriter”。
3赞 akhil_mittal 6/22/2015 #19

如果我们使用的是 Java 7 及以上版本,并且也知道要添加(附加)到文件中的内容,我们可以在 NIO 包中使用 newBufferedWriter 方法。

public static void main(String[] args) {
    Path FILE_PATH = Paths.get("C:/temp", "temp.txt");
    String text = "\n Welcome to Java 8";

    //Writing to the file temp.txt
    try (BufferedWriter writer = Files.newBufferedWriter(FILE_PATH, StandardCharsets.UTF_8, StandardOpenOption.APPEND)) {
        writer.write(text);
    } catch (IOException e) {
        e.printStackTrace();
    }
}

有几点需要注意:

  1. 指定字符集编码始终是一个好习惯,为此我们在类中有常量。StandardCharsets
  2. 该代码使用在尝试后自动关闭资源的语句。try-with-resource

虽然 OP 没有询问,但以防万一我们想搜索具有某些特定关键字的行,例如 我们可以在 Java 中使用流 API:confidential

//Reading from the file the first line which contains word "confidential"
try {
    Stream<String> lines = Files.lines(FILE_PATH);
    Optional<String> containsJava = lines.filter(l->l.contains("confidential")).findFirst();
    if(containsJava.isPresent()){
        System.out.println(containsJava.get());
    }
} catch (IOException e) {
    e.printStackTrace();
}

评论

0赞 yongtw123 6/26/2015
需要注意的是:使用 BufferedWriter 时,如果期望在写入每个字符串后都有一个新行,则应调用write(String string)newLine()
-1赞 userAsh 7/29/2015 #20

我的回答:

JFileChooser chooser= new JFileChooser();
chooser.showOpenDialog(chooser);
File file = chooser.getSelectedFile();
String Content = "What you want to append to file";

try 
{
    RandomAccessFile random = new RandomAccessFile(file, "rw");
    long length = random.length();
    random.setLength(length + 1);
    random.seek(random.length());
    random.writeBytes(Content);
    random.close();
} 
catch (Exception exception) {
    //exception handling
}
9赞 Rahbee Alvee 8/7/2015 #21

这可以在一行代码中完成。希望这对:)有所帮助

Files.write(Paths.get(fileName), msg.getBytes(), StandardOpenOption.APPEND);

评论

2赞 evg345 2/2/2018
它可能还不够:) 更好的版本是 Files.write(Paths.get(fileName), msg.getBytes(), StandardOpenOption.APPEND, StandardOpenOption.CREATE);
4赞 shakti kumar 8/7/2015 #22
FileOutputStream fos = new FileOutputStream("File_Name", true);
fos.write(data);

true 允许在现有文件中附加数据。如果我们将写

FileOutputStream fos = new FileOutputStream("File_Name");

它将覆盖现有文件。所以选择第一种方法。

1赞 Shalini Baranwal 12/27/2015 #23

此代码将满足您的需求:

   FileWriter fw=new FileWriter("C:\\file.json",true);
   fw.write("ssssss");
   fw.close();

评论

0赞 user207421 11/3/2023
@WestCoastProjects 不,它不会,它会附加。
-1赞 Mihir Patel 7/13/2016 #24
/**********************************************************************
 * it will write content to a specified  file
 * 
 * @param keyString
 * @throws IOException
 *********************************************************************/
public static void writeToFile(String keyString,String textFilePAth) throws IOException {
    // For output to file
    File a = new File(textFilePAth);

    if (!a.exists()) {
        a.createNewFile();
    }
    FileWriter fw = new FileWriter(a.getAbsoluteFile(), true);
    BufferedWriter bw = new BufferedWriter(fw);
    bw.append(keyString);
    bw.newLine();
    bw.close();
}// end of writeToFile()

评论

0赞 user207421 11/3/2023
存在/创建部分实际上是浪费时间和空间。
1赞 lfvv 9/19/2016 #25

如果你想在特定行中添加一些文本,你可以先阅读整个文件,将文本附加到任何你想要的地方,然后覆盖所有内容,如下面的代码所示:

public static void addDatatoFile(String data1, String data2){


    String fullPath = "/home/user/dir/file.csv";

    File dir = new File(fullPath);
    List<String> l = new LinkedList<String>();

    try (BufferedReader br = new BufferedReader(new FileReader(dir))) {
        String line;
        int count = 0;

        while ((line = br.readLine()) != null) {
            if(count == 1){
                //add data at the end of second line                    
                line += data1;
            }else if(count == 2){
                //add other data at the end of third line
                line += data2;
            }
            l.add(line);
            count++;
        }
        br.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }       
    createFileFromList(l, dir);
}

public static void createFileFromList(List<String> list, File f){

    PrintWriter writer;
    try {
        writer = new PrintWriter(f, "UTF-8");
        for (String d : list) {
            writer.println(d.toString());
        }
        writer.close();             
    } catch (FileNotFoundException | UnsupportedEncodingException e) {
        e.printStackTrace();
    }
}
4赞 David Charles 2/15/2017 #26
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;

public class Writer {


    public static void main(String args[]){
        doWrite("output.txt","Content to be appended to file");
    }

    public static void doWrite(String filePath,String contentToBeAppended){

       try(
            FileWriter fw = new FileWriter(filePath, true);
            BufferedWriter bw = new BufferedWriter(fw);
            PrintWriter out = new PrintWriter(bw)
          )
          {
            out.println(contentToBeAppended);
          }  
        catch( IOException e ){
        // File writing/opening failed at some stage.
        }

    }

}

评论

0赞 David Charles 2/15/2017
以上只是此链接中提供的解决方案的快速示例实现。因此,您可以复制并运行代码并立即查看其工作原理,请确保 output.out 文件与 Writer.java 文件位于同一目录中
37赞 Steve Chambers 6/1/2017 #27

稍微扩展一下Kip的回答, 下面是一个简单的 Java 7+ 方法,用于将新行附加到文件中,如果该文件尚不存在,则创建它

try {
    final Path path = Paths.get("path/to/filename.txt");
    Files.write(path, Arrays.asList("New line to append"), StandardCharsets.UTF_8,
        Files.exists(path) ? StandardOpenOption.APPEND : StandardOpenOption.CREATE);
} catch (final IOException ioe) {
    // Add your own exception handling...
}

更多说明:

  1. 上面使用了 Files.write 重载,该重载将文本写入文件(即类似于命令)。为了将文本写入末尾(即类似于命令),可以使用替代的 Files.write 重载,传入字节数组(例如 )。printlnprint"mytext".getBytes(StandardCharsets.UTF_8)

  2. 该选项仅在指定的目录已存在时才有效 - 如果不存在,则抛出 a。如果需要,可以在设置创建目录结构后添加以下代码:CREATENoSuchFileExceptionpath

    Path pathParent = path.getParent();
    if (!Files.exists(pathParent)) {
        Files.createDirectories(pathParent);
    }
    

评论

1赞 Enigmatic 1/30/2019
是否需要检查文件是否存在?我以为为你做了这项工作。.CREATE
0赞 Steve Chambers 8/14/2020
如果在文件已存在时使用,则它以静默方式无法追加任何内容 - 不会引发异常,但现有文件内容保持不变。.CREATE
1赞 lapo 11/12/2020
使用 + 效果很好,无需检查:APPENDCREATEFiles.write(Paths.get("test.log"), (Instant.now().toString() + "\r\n").getBytes(), StandardOpenOption.CREATE, StandardOpenOption.APPEND);
-1赞 shriram 10/4/2017 #28

您可以使用 follong 代码将内容附加到文件中:

 String fileName="/home/shriram/Desktop/Images/"+"test.txt";
  FileWriter fw=new FileWriter(fileName,true);    
  fw.write("here will be you content to insert or append in file");    
  fw.close(); 
  FileWriter fw1=new FileWriter(fileName,true);    
 fw1.write("another content will be here to be append in the same file");    
 fw1.close(); 
13赞 Lefteris Bab 2/9/2018 #29

爪哇 7+

以我的拙见,因为我是纯 Java 的粉丝,我会建议它是上述答案的组合。也许我参加聚会迟到了。代码如下:

 String sampleText = "test" +  System.getProperty("line.separator");
 Files.write(Paths.get(filePath), sampleText.getBytes(StandardCharsets.UTF_8), 
 StandardOpenOption.CREATE, StandardOpenOption.APPEND);

如果文件不存在,则创建该文件,如果已存在,则将 sampleText 追加到现有文件。使用它,可以避免向类路径添加不必要的库。

0赞 Saikat 7/7/2020 #30

对于 JDK 版本 >= 7

您可以使用以下简单方法将给定内容附加到指定文件:

void appendToFile(String filePath, String content) {
  try (FileWriter fw = new FileWriter(filePath, true)) {
    fw.write(content + System.lineSeparator());
  } catch (IOException e) { 
    // TODO handle exception
  }
}

我们正在以追加模式构造一个 FileWriter 对象。