Apache Commons I/OのFileUtils.writeStringToFile(fileName, text)
関数は、ファイル内の以前のテキストを上書きします。ファイルにデータを追加したいのですが。 Commons I/Oを同じように使用できる方法はありますか? Javaからの通常のBufferedWriter
を使用してそれを行うことができますが、Commons I/Oを使用して同じことを知りたいです。
これは、Apache IOの2.1バージョンに実装されています。ファイルに文字列を追加するには、関数の追加パラメーターとしてtrueを渡します。
例:
FileUtils.writeStringToFile(file, "String to append", true);
最新バージョンのCommons-io 2.1をダウンロード
FileUtils.writeStringToFile(File,Data,append)
追加をtrueに設定します...
慎重に。その実装はファイルハンドルをリークしているようです...
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() {}
}
実際、Apache-commons-io FileUtilsのバージョン2.4には、コレクション用の追加モードもあります。
そしてMavenの依存関係:
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<type>jar</type>
</dependency>
この小さなものはトリックをする必要があります:
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.5では、1つの追加パラメーター、つまりエンコードを渡す必要があります。
FileUtils.writeStringToFile(file, "line to append", "UTF-8", true);
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