การเขียนข้อมูลลงไฟล์ชั่วคราวใน Java

ต่อไปนี้คือตัวอย่างการเขียนข้อมูลลงไฟล์ชั่วคราว โดยปกติแล้วมันไม่ได้มีความแตกต่างระหว่างการเขียนไฟล์ปกติกับการเขียนไฟล์ชั่วคราวครับ.

ตัวอย่าง
ในตัวอย่างเป็นการสร้างไฟล์ชั่วคราวที่ชื่อ "tempfile.tmp" และเขียนข้อมูล "This is the temporary file content" ไว้ข้างในไฟล์ครับ.
package demo.temporaryfile;

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

public class WriteTempFileExample {

    /**
     * @param args
     */
    public static void main(String[] args) {
        try {
            // create a temp file
            File temp = File.createTempFile("tempfile", ".tmp");
            
            // write it
            BufferedWriter bw = new BufferedWriter(new FileWriter(temp));
            bw.write("This is the temporary file content");
            bw.close();
            System.out.println("Write temp data is Done");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
ผลลัพธ์ที่ได้คือ
Write temp data is Done.

About Nop

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment

0 comments:

Post a Comment