วิธีต่อท้ายข้อความในไฟล์ที่มีอยู่ใน Java


คำตอบ:


793

คุณกำลังทำสิ่งนี้เพื่อการเข้าสู่ระบบหรือไม่? ถ้าเป็นเช่นนั้นมีห้องสมุดหลายประการนี้ สองได้รับความนิยมมากที่สุดคือLog4jและLogback

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สร้างจะบอกให้ผนวกเข้ากับไฟล์แทนที่จะเขียนไฟล์ใหม่ (หากไฟล์ไม่มีอยู่ไฟล์นั้นจะถูกสร้างขึ้น)
  • BufferedWriterแนะนำให้ใช้ a สำหรับนักเขียนที่มีราคาแพง (เช่นFileWriter)
  • ใช้PrintWriterช่วยให้คุณเข้าถึงไวยากรณ์ที่คุณอาจใช้ในการจากprintlnSystem.out
  • แต่เครื่องห่อหุ้ม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
    }
}

31
คุณควรใช้ java7 ลองกับทรัพยากรหรือวางปิด () ในบล็อกในที่สุดเพื่อให้แน่ใจว่าไฟล์จะถูกปิดในกรณีที่มีข้อยกเว้น
Svetlin Zarev

1
อัพเดตด้วยไวยากรณ์ Java 7 การจัดการข้อยกเว้นยังคงเป็นแบบฝึกหัดสำหรับผู้อ่าน แต่ทำให้ความคิดเห็นชัดเจนขึ้น
Kip

3
ให้จินตนาการว่าnew BufferedWriter(...)มีข้อผิดพลาดเกิดขึ้น จะFileWriterถูกปิดหรือไม่ ฉันเดาว่ามันจะไม่ถูกปิดเพราะclose()วิธีการ (ในสภาวะปกติ) จะถูกเรียกใช้บนoutวัตถุซึ่ง int กรณีนี้จะไม่ถูกเริ่มต้น - ดังนั้นจริงๆแล้วclose()วิธีการจะไม่ถูกเรียก -> ไฟล์จะถูกเปิด แต่ จะไม่ถูกปิด ดังนั้น IMHO tryข้อความควรมีลักษณะเช่นนี้ try(FileWriter fw = new FileWriter("myFile.txt")){ Print writer = new ....//code goes here } และเขาควรflush()เป็นนักเขียนก่อนออกจากtryบล็อก !!!
Svetlin Zarev

5
ข้อควรระวังตัวอย่าง "Java เก่ากว่า" จะไม่ปิดสตรีมอย่างถูกต้องหากมีข้อผิดพลาดเกิดขึ้นในการลองบล็อก
Emily L.

1
"gotchas" สองสามอย่างที่เป็นไปได้ด้วยวิธี Java 7: (1) หากไฟล์ยังไม่มีอยู่StandardOpenOption.APPENDจะไม่สร้างมันขึ้นมา - เป็นชนิดของความล้มเหลวที่เงียบเนื่องจากจะไม่มีข้อยกเว้น (2) การใช้.getBytes()จะหมายถึงไม่มีอักขระส่งคืนก่อนหรือหลังข้อความต่อท้าย ได้เพิ่มคำตอบอื่นเพื่อแก้ไขปัญหาเหล่านี้
Steve Chambers

166

คุณสามารถใช้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());
}

9
closeควรอยู่ในfinallyblock เหมือนกับที่แสดงในคำตอบของ @ etechในกรณียกเว้นจะถูกโยนทิ้งระหว่างการสร้าง FileWriter และการเรียกปิด
Pshemo

5
คำตอบที่ดีแม้ว่าจะใช้ System.getProperty ("line.separator") ดีกว่าสำหรับบรรทัดใหม่มากกว่า "\ n"
Henry Zhu

@ ถอดรหัสฉันได้ย้อนกลับการแก้ไขของคุณในคำตอบนี้เนื่องจากไม่ได้รวบรวม
Kip

@Kip ปัญหาคืออะไร? ฉันต้องป้อน "ตัวพิมพ์ใหญ่"
ถอดรหัส

2
ลองแข่งขันกับทรัพยากรอย่างไร? try(FileWriter fw = new FileWriter(filename,true)){ // Whatever }catch(IOException ex){ ex.printStackTrace(); }
php_coder_3809625

72

คำตอบทั้งหมดที่นี่กับบล็อก try / catch ไม่ควรมีชิ้นส่วน (.) ปิดอยู่ในบล็อกหรือไม่

ตัวอย่างคำตอบที่ทำเครื่องหมายไว้:

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(PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("writePath", true)))) {
    out.println("the text");
} catch (IOException e) {
    System.err.println(e);
}

1
เมื่อoutอยู่นอกขอบเขตจะถูกปิดโดยอัตโนมัติเมื่อได้รับการเก็บขยะใช่ไหม ในตัวอย่างของคุณกับfinallyบล็อกฉันคิดว่าคุณต้องลอง / จับซ้อนกันout.close()ถ้าฉันจำได้ถูก ทางออกของ Java 7 นั้นค่อนข้างเรียบเนียน! (ผมยังไม่ได้รับการทำใด ๆ dev Java ตั้งแต่ Java 6 ดังนั้นฉันก็ไม่คุ้นเคยกับการเปลี่ยนแปลงที่.)
กีบ

1
@Kip Nope การออกนอกขอบเขตไม่ได้ทำอะไรใน Java ไฟล์จะถูกปิดในเวลาสุ่มในอนาคต (อาจเป็นเมื่อโปรแกรมปิด)
Navin

@etech วิธีที่สองจะต้องใช้flushวิธีการหรือไม่
syfantid

43

แก้ไข - ณ 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();
        }
    }
}


5
โอ้ขอบคุณ. ฉันรู้สึกสนุกกับความซับซ้อนของคำตอบอื่น ๆ ทั้งหมด ฉันไม่เข้าใจว่าทำไมผู้คนถึงต้องการทำให้ชีวิตนักพัฒนาของพวกเขาซับซ้อนขึ้น
Alphaaa

ปัญหาด้วยวิธีนี้คือมันเปิดและปิดกระแสข้อมูลขาออกทุกครั้ง ขึ้นอยู่กับว่าคุณเขียนไฟล์อะไรและบ่อยแค่ไหนสิ่งนี้อาจส่งผลให้เกิดค่าใช้จ่ายที่ไร้สาระ
บัฟฟาโล่

@Buffalo ถูกต้อง แต่คุณสามารถใช้ StringBuilder สำหรับสร้างชิ้นขนาดใหญ่ (ที่ควรค่าแก่การเขียน) ก่อนที่จะเขียนลงในไฟล์
Konstantin K

32

หากต้องการขยายคำตอบของ 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...
}

หมายเหตุ:ด้านบนใช้Files.writeโอเวอร์โหลดที่เขียนบรรทัดข้อความไปยังไฟล์ (เช่นคล้ายกับprintlnคำสั่ง) หากต้องการเขียนข้อความไปยังจุดสิ้นสุด (เช่นคล้ายกับprintคำสั่ง) Files.writeสามารถใช้เกินพิกัดทางเลือกส่งผ่านในอาร์เรย์ไบต์ (เช่น"mytext".getBytes(StandardCharsets.UTF_8))


คุณต้องการตรวจสอบว่ามีไฟล์อยู่หรือไม่? ฉันคิดว่า.CREATEจะทำงานให้คุณ
LearningToJava

22

ตรวจสอบให้แน่ใจว่ากระแสข้อมูลถูกปิดอย่างเหมาะสมในทุกสถานการณ์

เป็นเรื่องที่น่าตกใจเล็กน้อยที่คำตอบเหล่านี้จำนวนมากปล่อยให้ไฟล์เปิดค้างไว้ในกรณีที่เกิดข้อผิดพลาด คำตอบ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.
  }

+1 สำหรับ ARM ที่ถูกต้องกับ Java 7. นี่คือคำถามที่ดีเกี่ยวกับรูปแบบนี้หากิน: stackoverflow.com/questions/12552863/...
Vadzim

1
อืมเหตุผลบางอย่างที่PrintWriter.close()ไม่ได้รับการประกาศให้เป็นthrows IOExceptionในเอกสาร มองไปที่ของแหล่งที่มาของclose()วิธีการที่แท้จริงไม่สามารถโยนIOExceptionเพราะมันจับมันจากกระแสพื้นฐานและการตั้งธง ดังนั้นถ้าคุณกำลังทำงานในรหัสสำหรับกระสวยอวกาศถัดไปหรือ X-ray ระบบวัดแสงยาคุณควรใช้หลังจากความพยายามที่จะPrintWriter.checkError() out.close()เอกสารนี้ควรได้รับการบันทึกจริง ๆ
Evgeni Sergeev

หากเรากำลังจะหวาดระแวงสุด ๆ เกี่ยวกับการปิดแต่ละอย่างนั้นXX.close()ควรอยู่ในการลอง / จับของตัวเองใช่ไหม? ตัวอย่างเช่นout.close()อาจมีข้อยกเว้นซึ่งในกรณีนี้bw.close()และfw.close()จะไม่ถูกเรียกและfwเป็นสิ่งที่สำคัญที่สุดที่จะต้องปิด
คิป

13

ใน 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

9

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เข้ากับไฟล์ที่มีอยู่ การใช้สิ่งนี้จะช่วยให้คุณไม่ต้องเพิ่ม libs ที่ไม่จำเป็นใน classpath ของคุณ


8

สามารถทำได้ในรหัสหนึ่งบรรทัด หวังว่าจะช่วย :)

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

1
อาจไม่เพียงพอ :) รุ่นที่ดีกว่าคือ Files.write (Paths.get (ชื่อไฟล์), msg.getBytes (), StandardOpenOption.APPEND, StandardOpenOption.CREATE);
evg345

6

ใช้ java.nio ไฟล์พร้อมกับ 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โดยใช้ไฟล์ที่รับStandardOpenOptionพารามิเตอร์และล้างอัตโนมัติจากผลลัพธ์PrintWriter 's วิธีการนั้นจะสามารถเรียกให้เขียนไปยังแฟ้มBufferedWriterPrintWriterprintln()

StandardOpenOptionพารามิเตอร์ที่ใช้ในรหัสนี้เปิดแฟ้มสำหรับการเขียนเพียงผนวกไปยังไฟล์และสร้างไฟล์ถ้ามันไม่ได้อยู่

Paths.get("path here")new File("path here").toPath()สามารถถูกแทนที่ด้วย และCharset.forName("charset name")สามารถปรับเปลี่ยนเพื่อรองรับความต้องการCharsetได้


5

ฉันแค่เพิ่มรายละเอียดเล็ก ๆ :

    new FileWriter("outfilename", true)

พารามิเตอร์ 2.nd (จริง) เป็นคุณสมบัติ (หรืออินเทอร์เฟซ) ที่เรียกว่า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 ) ด้วยอินเตอร์เฟสนี้สามารถใช้สำหรับการเพิ่มเนื้อหา

กล่าวอีกนัยหนึ่งคุณสามารถเพิ่มเนื้อหาลงในไฟล์ gzipped ของคุณหรือกระบวนการ http บางอย่าง


4

ตัวอย่างการใช้ 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
นี่คือคำแนะนำที่น่ากลัว คุณเปิดกระแสข้อมูลไปยังไฟล์ 42 ครั้งแทนที่จะเป็นหนึ่งครั้ง
xehpuk

3
@ xehpuk ดีขึ้นอยู่กับมัน 42 ยังคงโอเคถ้ามันทำให้โค้ดอ่านง่ายขึ้น 42k จะไม่เป็นที่ยอมรับ
dantuch

4

ลองกับ 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);
}

obj.toJSONString () ที่นี่คืออะไร
Bhaskara Arani

@BhaskaraArani เป็นเพียงสตริงเขาวางตัวอย่างของวัตถุ JSON ที่แปลงเป็นสตริง แต่แนวคิดก็คือมันอาจเป็นสตริงใดก็ได้
Gherbi Hicham

3
    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

ลองใช้ด้วยทรัพยากรที่ดีกว่าแล้วสิ่งที่ pre-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

ถ้าเราใช้ Java 7 ขึ้นไปและรู้เนื้อหาที่จะเพิ่ม (ต่อท้าย) ไปยังไฟล์เราสามารถใช้ประโยชน์จากวิธีการใหม่ของBufferedWriterในแพ็คเกจ NIO

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เราสามารถใช้ประโยชน์จาก API ของสตรีมใน Java:

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

ข้อแม้: เมื่อใช้ BufferedWriter write(String string)หากคาดว่าจะมีบรรทัดใหม่หลังจากเขียนแต่ละสตริงnewLine()ควรเรียก
yongtw123

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

true อนุญาตให้ผนวกข้อมูลในไฟล์ที่มีอยู่ ถ้าเราจะเขียน

FileOutputStream fos = new FileOutputStream("File_Name");

มันจะเขียนทับไฟล์ที่มีอยู่ ดังนั้นไปสำหรับวิธีแรก


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

    }

}

ข้างต้นเป็นเพียงตัวอย่างการใช้งานอย่างรวดเร็วของการแก้ปัญหาที่นำเสนอที่ลิงค์นี้ ดังนั้นคุณสามารถคัดลอกและและเรียกใช้รหัสและทันทีที่เห็นวิธีการทำงานให้แน่ใจว่าไฟล์ output.out อยู่ในไดเรกทอรีเดียวกันกับแฟ้ม Writer.java
เดวิดชาร์ลส์

2
FileOutputStream stream = new FileOutputStream(path, true);
try {

    stream.write(

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

    );

} finally {
    stream.close();
}

จากนั้นจับ IOException ที่ต้นน้ำ


2

สร้างฟังก์ชั่นที่ใดก็ได้ในโครงการของคุณและเพียงเรียกฟังก์ชั่นนั้นในที่ที่คุณต้องการ

พวกคุณต้องจำไว้ว่าพวกคุณกำลังเรียกเธรดที่แอ็คทีฟซึ่งคุณไม่ได้เรียกแบบอะซิงโครนัสและเนื่องจากมันน่าจะเป็นเพจ 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

ห้องสมุด

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

คุณสามารถลองสิ่งนี้:

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
}


1

วิธีการต่อไปนี้ให้คุณต่อท้ายข้อความในไฟล์บางไฟล์:

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

ในกรณีที่คุณต้องการเพิ่มข้อความบางอย่างในบรรทัดเฉพาะคุณสามารถอ่านไฟล์ทั้งหมดก่อนใส่ข้อความต่อท้ายทุกที่ที่คุณต้องการแล้วเขียนทับทุกอย่างเช่นในรหัสด้านล่าง:

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

0

คำตอบของฉัน:

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
/**********************************************************************
 * 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()

-1

คุณสามารถใช้รหัส 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(); 

-1

1.7 วิธีการ:

void appendToFile(String filePath, String content) throws IOException{

    Path path = Paths.get(filePath);

    try (BufferedWriter writer = 
            Files.newBufferedWriter(path, 
                    StandardOpenOption.APPEND)) {
        writer.newLine();
        writer.append(content);
    }

    /*
    //Alternative:
    try (BufferedWriter bWriter = 
            Files.newBufferedWriter(path, 
                    StandardOpenOption.WRITE, StandardOpenOption.APPEND);
            PrintWriter pWriter = new PrintWriter(bWriter)
            ) {
        pWriter.println();//to have println() style instead of newLine();   
        pWriter.append(content);//Also, bWriter.append(content);
    }*/
}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.