web-dev-qa-db-ja.com

Javaで既存のファイルにテキストを追加する方法

Javaで既存のファイルに繰り返しテキストを追加する必要があります。それ、どうやったら出来るの?

641
flyingfromchina

ロギング目的でこれをやっていますか?もしそうなら、 これ用のライブラリがいくつかあります 。最も人気のある2つは 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
}

慎重に :上記の方法では、ファイルがまだ存在していなければNoSuchFileExceptionがスローされます。それはまた自動的に改行を追加しません(あなたがテキストファイルに追加するときしばしば望む)。 Steve Chambersの答えFilesクラスを使ってこれを実現する方法を説明します。

ただし、同じファイルに何度も書き込む場合は、ディスク上のファイルを何度も開いたり閉じたりする必要があるため、処理が遅くなります。この場合、バッファードライターのほうが優れています。

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コンストラクタの2番目のパラメータは、新しいファイルを作成するのではなく、ファイルに追加するように指示します。 (ファイルが存在しない場合は作成されます。)
  • 高価なライター(BufferedWriterなど)にはFileWriterを使用することをお勧めします。
  • PrintWriterを使用すると、おそらくSystem.outから慣れ親しんでいるprintln構文にアクセスできます。
  • しかしBufferedWriterおよびPrintWriterラッパーは厳密には必要ありません。

古い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
    }
}
742
Kip

追加する場合は、フラグをfileWriterに設定してtrueを使用できます。

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());
}
157
northpole

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);
}
66
etech

編集 - Apache Commons 2.1では、正しい方法は次のとおりです。

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

@ Kipの解決策を適用して、最後にファイルを正しく閉じるようにしました。

public static void appendToFile(String targetFile, String s) throws IOException {
    appendToFile(new File(targetFile), s);
}

public static void appendToFile(File targetFile, String s) throws IOException {
    PrintWriter out = null;
    try {
        out = new PrintWriter(new BufferedWriter(new FileWriter(targetFile, true)));
        out.println(s);
    } finally {
        if (out != null) {
            out.close();
        }
    }
}
40
ripper234

Kip's answer を少し拡張すると、ファイルに 改行 を追加するための単純な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...
}

注:上記では、 Files.write オーバーロードを使用してlinesのテキストをファイルに書き込みます(つまり、printlnコマンドに似ています)。 printコマンドと同じように、代わりに Files.write オーバーロードを使用して、バイト配列を渡すことができます(例:"mytext".getBytes(StandardCharsets.UTF_8))。

24
Steve Chambers

すべてのシナリオでストリームが正しく閉じられるようにしてください。

エラーが発生した場合に、これらの回答のうちのいくつがファイルハンドルを開いたままにしておくかという少し憂慮すべきことです。答えは 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以降、推奨される方法は "try with resources"を使用して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.
  }
21
Emily L.

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);
13

Java 7+

私は普通のJavaのファンなので、私の謙虚な意見では、それが前述の答えの組み合わせであることを何か提案します。多分私はパーティーに遅刻します。これがコードです:

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

ファイルが存在しない場合は作成し、すでに存在する場合は既存のファイルに sampleText を追加します。これを使用すると、不要なライブラリをクラスパスに追加する手間が省けます。

8
Lefteris Bab

これは1行のコードで実行できます。お役に立てれば :)

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

Java.nio. Files をJava.nio.file. StandardOpenOption と共に使用する

    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();

これはBufferedWriterパラメータを受け取るFilesを使用したStandardOpenOptionと、その結果のPrintWriterからの自動フラッシュBufferedWriterを作成します。 PrintWriterprintln()メソッドを呼び出して、ファイルに書き込むことができます。

このコードで使用されるStandardOpenOptionパラメータは、書き込み用にファイルを開き、ファイルに追加するだけで、ファイルが存在しない場合は作成します。

Paths.get("path here")new File("path here").toPath()に置き換えることができます。そしてCharset.forName("charset name")は希望するCharsetに適応するように修正することができます。

6
icasdri

細部を追加します。

    new FileWriter("outfilename", true)

2.ndパラメータ(true)は、 appendable http://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プロセス

5
xhudik

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);
}
5
dantuch

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);
}
4

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();
    }
}
3
mikeyreilly

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. Charsetエンコーディングを指定することは常に良い習慣です。そのためにクラスStandardCharsetsには定数があります。
  2. コードは、試行後にリソースが自動的に閉じられるtry-with-resourceステートメントを使用します。

OPは尋ねませんでしたが、念のために特定のキーワードを持つ行を検索したい場合があります。 confidentialでは、JavaのストリームAPIを利用できます。

//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();
}
3
i_am_zero
    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();         
    }

これはあなたが意図していることをするでしょう..

3
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.
        }

    }

}
3
David Charles
FileOutputStream fos = new FileOutputStream("File_Name", true);
fos.write(data);

trueの場合、既存のファイルにデータを追加することができます。書くなら

FileOutputStream fos = new FileOutputStream("File_Name");

既存のファイルを上書きします。だから最初のアプローチに行きます。

2
shakti kumar

プロジェクト内の任意の場所に関数を作成し、必要な場所にその関数を呼び出すだけです。

皆さんは、皆さんが非同期スレッドではなくアクティブスレッドを呼び出していることを覚えておく必要があります。それを正しく実行するには、おそらく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********/

3行目が実際にテキストを追加するので、3行目のコード2行目。 :P

2
Netcfmx

としょうかん

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);
    }
}
2
absiddiqueLive

これも試すことができます。

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
}
2
aashima
FileOutputStream stream = new FileOutputStream(path, true);
try {

    stream.write(

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

    );

} finally {
    stream.close();
}

その後、上流のどこかでIOExceptionをキャッチします。

2
SharkAlley

Apacheコモンズプロジェクト をお勧めします。このプロジェクトはすでにあなたが必要とすることをするためのフレームワークを提供しています(すなわち、コレクションの柔軟なフィルタリング)。

1
Tom Drake

次の方法では、ファイルにテキストを追加しましょう。

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);
}

効率的ではありませんが、うまくいきます。改行は正しく処理され、まだ存在しない場合は新しいファイルが作成されます。

1
BullyWiiPlaza

特定の行にテキストを追加 最初にファイル全体を読み、必要な場所にテキストを追加してから、以下のコードのようにすべてを上書きすることができます。

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();
    }
}
1
lfvv

このコードはあなたの必要性を十分にします:

   FileWriter fw=new FileWriter("C:\\file.json",true);
   fw.write("ssssss");
   fw.close();
1
/**********************************************************************
 * 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
Mihir Patel

私の答え:

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
}
0
userAsh