web-dev-qa-db-ja.com

Apache Commons I / Oを使用してデータをファイルに追加する

Apache Commons I/OのFileUtils.writeStringToFile(fileName, text)関数は、ファイル内の以前のテキストを上書きします。ファイルにデータを追加したいのですが。 Commons I/Oを同じように使用できる方法はありますか? Javaからの通常のBufferedWriterを使用してそれを行うことができますが、Commons I/Oを使用して同じことを知りたいです。

32
Dexter

これは、Apache IOの2.1バージョンに実装されています。ファイルに文字列を追加するには、関数の追加パラメーターとしてtrueを渡します。

  • FileUtils.writeStringToFile
  • FileUtils.openOutputStream
  • FileUtils.write
  • FileUtils.writeByteArrayToFile
  • FileUtils.writeLines

例:

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

最新バージョンのCommons-io 2.1をダウンロード

FileUtils.writeStringToFile(File,Data,append)

追加をtrueに設定します...

5
Makky

慎重に。その実装はファイルハンドルをリークしているようです...

public final class AppendUtils {

    public static void appendToFile(final InputStream in, final File f) throws IOException {
        OutputStream stream = null;
        try {
            stream = outStream(f);
            IOUtils.copy(in, stream);
        } finally {
            IOUtils.closeQuietly(stream);
        }
    }

    public static void appendToFile(final String in, final File f) throws IOException {
        InputStream stream = null;
        try {
            stream = IOUtils.toInputStream(in);
            appendToFile(stream, f);
        } finally {
            IOUtils.closeQuietly(stream);
        }
    }

    private static OutputStream outStream(final File f) throws IOException {
        return new BufferedOutputStream(new FileOutputStream(f, true));
    }

    private AppendUtils() {}

}
4
Ryan

実際、Apache-commons-io FileUtilsのバージョン2.4には、コレクション用の追加モードもあります。

これはJavadocです

そしてMavenの依存関係:

<dependency>
    <groupId>commons-io</groupId>
    <artifactId>commons-io</artifactId>
    <version>2.4</version>
    <type>jar</type>
</dependency>
2
gps

この小さなものはトリックをする必要があります:

package com.yourpackage;

// you're gonna want to optimize these imports
import Java.io.*;
import org.Apache.commons.io.*;

public final class AppendUtils {

    public static void appendToFile(final InputStream in, final File f)
            throws IOException {
        IOUtils.copy(in, outStream(f));
    }

    public static void appendToFile(final String in, final File f)
            throws IOException {
        appendToFile(IOUtils.toInputStream(in), f);
    }

    private static OutputStream outStream(final File f) throws IOException {
        return new BufferedOutputStream(new FileOutputStream(f, true));
    }

    private AppendUtils() {
    }

}

編集:私のEclipseは壊れていたので、以前のエラーは表示されませんでした。修正されたエラー

2

バージョン2.5では、1つの追加パラメーター、つまりエンコードを渡す必要があります。

FileUtils.writeStringToFile(file, "line to append", "UTF-8", true);
1
Roushan
public static void writeStringToFile(File file,
                                     String data,
                                     boolean append)
                              throws IOException


   Writes the toString() value of each item in a collection to the specified File line by line. The default VM encoding and the default line ending will be used.

Parameters:
    file - the file to write to
    lines - the lines to write, null entries produce blank lines
    append - if true, then the lines will be added to the end of the file rather than overwriting 
Throws:
    IOException - in case of an I/O error
Since:
    Commons IO 2.1
0
White_Sox