Java读写文件的几种方式

Java提供了多种方式来读写文件,下面详细介绍几种常用的方式:

1. 使用FileInputStream和FileOutputStream

FileInputStream用于从文件中读取数据,FileOutputStream用于向文件中写入数据。需要注意的是,使用这两个类需要手动关闭流,以确保资源的正确释放。

例如,使用FileInputStream读取文件的内容:

```java

FileInputStream inputStream = null;

try {

File file = new File("example.txt");

inputStream = new FileInputStream(file);

int data;

while ((data = inputStream.read()) != -1) {

// 处理读取到的数据

System.out.print((char) data);

}

} catch (IOException e) {

e.printStackTrace();

} finally {

if (inputStream != null) {

try {

inputStream.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

```

使用FileOutputStream将数据写入文件:

```java

FileOutputStream outputStream = null;

try {

File file = new File("example.txt");

outputStream = new FileOutputStream(file);

String data = "Hello World";

byte[] byteData = data.getBytes();

outputStream.write(byteData);

} catch (IOException e) {

e.printStackTrace();

} finally {

if (outputStream != null) {

try {

outputStream.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

```

2. 使用BufferedReader和BufferedWriter

BufferedReader用于从文件中读取文本数据,BufferedWriter用于向文件中写入文本数据。这两个类提供了更高效的读写操作,同时也会自动处理缓冲区。

例如,使用BufferedReader读取文件的内容:

```java

BufferedReader reader = null;

try {

File file = new File("example.txt");

reader = new BufferedReader(new FileReader(file));

String line;

while ((line = reader.readLine()) != null) {

System.out.println(line);

}

} catch (IOException e) {

e.printStackTrace();

} finally {

if (reader != null) {

try {

reader.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

```

使用BufferedWriter将文本写入文件:

```java

BufferedWriter writer = null;

try {

File file = new File("example.txt");

writer = new BufferedWriter(new FileWriter(file));

String data = "Hello World";

writer.write(data);

} catch (IOException e) {

e.printStackTrace();

} finally {

if (writer != null) {

try {

writer.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

```

3. 使用Scanner和PrintWriter

Scanner和PrintWriter类可以方便地读取和写入各种数据类型,例如整数、浮点数、字符串等。

例如,使用Scanner读取文件的内容:

```java

Scanner scanner = null;

try {

File file = new File("example.txt");

scanner = new Scanner(file);

while (scanner.hasNextLine()) {

String line = scanner.nextLine();

System.out.println(line);

}

} catch (FileNotFoundException e) {

e.printStackTrace();

} finally {

if (scanner != null) {

scanner.close();

}

}

```

使用PrintWriter将数据写入文件:

```java

PrintWriter writer = null;

try {

File file = new File("example.txt");

writer = new PrintWriter(file);

String data = "Hello World";

writer.println(data);

} catch (FileNotFoundException e) {

e.printStackTrace();

} finally {

if (writer != null) {

writer.close();

}

}

```

以上就是几种常用的Java读写文件的方式。需要注意的是,在处理文件操作时,要始终确保在适当的时候关闭流以释放资源,避免内存泄漏和文件锁定的问题。 如果你喜欢我们三七知识分享网站的文章, 欢迎您分享或收藏知识分享网站文章 欢迎您到我们的网站逛逛喔!https://www.37seo.cn/

点赞(120) 打赏

评论列表 共有 1 条评论

忆缱绻 1年前 回复TA

秋风吹起,好运频频传递。落叶飘飘,快乐伴随逍遥。丝丝秋雨,健康幸福如意。晴空高高,一切幸福安好。秋高气爽的日子,愿你好运快乐围绕。

立即
投稿
发表
评论
返回
顶部