Rumah > Java > javaTutorial > java写入文件的几种方法

java写入文件的几种方法

黄舟
Lepaskan: 2016-12-12 13:20:40
asal
1352 orang telah melayarinya

一,FileWritter写入文件

FileWritter, 字符流写入字符到文件。默认情况下,它会使用新的内容取代所有现有的内容,然而,当指定一个true (布尔)值作为FileWritter构造函数的第二个参数,它会保留现有的内容,并追加新内容在文件的末尾。

1. 替换所有现有的内容与新的内容。

new FileWriter(file);2. 保留现有的内容和附加在该文件的末尾的新内容。

1

2

代码如下:

new FileWriter(file,true);

Salin selepas log masuk

追加文件示例
一个文本文件,命名为“javaio-appendfile.txt”,并包含以下内容。

ABC Hello追加新内容 new FileWriter(file,true)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

代码如下:

package com.yiibai.file;

 

import java.io.File;

import java.io.FileWriter;

import java.io.BufferedWriter;

import java.io.IOException;

 

public class AppendToFileExample

{

    public static void main( String[] args )

    {

     try{

      String data = " This content will append to the end of the file";

 

      File file =new File("javaio-appendfile.txt");

 

      //if file doesnt exists, then create it

      if(!file.exists()){

       file.createNewFile();

      }

 

      //true = append file

      FileWriter fileWritter = new FileWriter(file.getName(),true);

             BufferedWriter bufferWritter = new BufferedWriter(fileWritter);

             bufferWritter.write(data);

             bufferWritter.close();

 

         System.out.println("Done");

 

     }catch(IOException e){

      e.printStackTrace();

     }

    }

}

Salin selepas log masuk

结果
现在,文本文件“javaio-appendfile.txt”内容更新如下:

ABC Hello This content will append to the end of the file


二,BufferedWriter写入文件

缓冲字符(BufferedWriter )是一个字符流类来处理字符数据。不同于字节流(数据转换成字节),你可以直接写字符串,数组或字符数据保存到文件。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

代码如下:

package com.yiibai.iofile;

 

import java.io.BufferedWriter;

import java.io.File;

import java.io.FileWriter;

import java.io.IOException;

 

public class WriteToFileExample {

 public static void main(String[] args) {

  try {

 

   String content = "This is the content to write into file";

 

   File file = new File("/users/mkyong/filename.txt");

 

   // if file doesnt exists, then create it

   if (!file.exists()) {

    file.createNewFile();

   }

 

   FileWriter fw = new FileWriter(file.getAbsoluteFile());

   BufferedWriter bw = new BufferedWriter(fw);

   bw.write(content);

   bw.close();

 

   System.out.println("Done");

 

  } catch (IOException e) {

   e.printStackTrace();

  }

 }

}

Salin selepas log masuk


Label berkaitan:
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan