【Java 基础】18 I/O流

文章目录

I/O流(Input/Output 流)是计算机程序中不可或缺的一部分, ++往大了说所有的操作都是IO++ 。Java 提供了强大而灵活的 I/O 框架,支持各种数据的 读取写入 操作。

1.基本概念

I/O 即 流进 和 流出

I/O 主要涉及到两个核心概念:输入(Input)和 输出(Output)。

输入,表示从外部读取数据到程序。输出,表示将程序的数据写入到外部。

比如我们写的 程序 ,执行之后将结果输出到 控制台,这就是一种我们所常见的 IO。

Java 将 I/O 抽象成流(Stream)的概念,流是一系列的数据元素,可以是 字节字符

2.字节流

字节流(Byte Streams): 处理原始的字节数据。InputStreamOutputStream 是字节流的基本抽象类。

FileInputStreamFileOutputStream 用于读取和写入文件的字节流。

例如:

从 input.txt 文件中读取内容,输出到控制台 并且 将内容写到一个新的文件 output.txt 中

示例代码:

Java 复制代码
public static void main(String[] args) {
	try (FileInputStream fis = new FileInputStream("C:\\tmp\\input.txt");
		 FileOutputStream fos = new FileOutputStream("C:\\tmp\\output.txt")) {
		// 读取 input.txt
		int byteData;
		while ((byteData = fis.read()) != -1) {
			// 打印内容
			System.out.print((char) byteData);
			// 写入 output.txt
			fos.write(byteData);
		}
	} catch (IOException e) {
		e.printStackTrace();
	}
}

输出结果:Hello cheney

生成了 output.txt,内容:Hello cheney

ByteArrayInputStreamByteArrayOutputStream 用于读取和写入字节数组的字节流。

java 复制代码
public static void main(String[] args) {
	String data = "Hello cheney";
	// 读取字符串
	byte[] dataByte = data.getBytes(StandardCharsets.UTF_8);
	try (ByteArrayInputStream bais = new ByteArrayInputStream(dataByte);
		 ByteArrayOutputStream baos = new ByteArrayOutputStream()) {
		byte byteData;
		while ((byteData = (byte) bais.read()) != -1) {
			// 写入 ByteArrayOutputStream
			baos.write(byteData);
		}
		System.out.println(baos);
	} catch (IOException e) {
		e.printStackTrace();
	}
}

输出结果:Hello cheney

3.字符流

字符流(Character Streams): 处理字符数据,基于 Unicode 字符集。ReaderWriter 是字符流的基本抽象类。

FileReaderFileWriter 用于读取和写入文件的字符流。

java 复制代码
public static void main(String[] args) {
	try (FileReader fr = new FileReader("C:\\tmp\\input.txt");
		 FileWriter fw = new FileWriter("C:\\tmp\\output.txt")) {
		// 读取 input.txt
		int charData;
		while ((charData = fr.read()) != -1) {
			// 打印内容
			System.out.print((char) charData);
            // 写入 output.txt
			fw.write(charData);
		}
	} catch (IOException e) {
		e.printStackTrace();
	}
}

输出结果:Hello cheney

FileOutputStream 一样,生成了 output.txt,内容:Hello cheney

BufferedReaderBufferedWriter 提供了缓冲区,加速字符流的读取和写入操作。

java 复制代码
public static void main(String[] args) {
	String in = "C:\\tmp\\input.txt";
	String out = "C:\\tmp\\output.txt";
	try (BufferedReader reader = new BufferedReader(new FileReader(in));
		 BufferedWriter writer = new BufferedWriter(new FileWriter(out))) {
		// 读取 input.txt
		String line;
		while ((line = reader.readLine()) != null) {
			// // 打印第一行的内容
			System.out.println(line);
			// 写入 output.txt
			writer.write(line);
		}
	} catch (IOException e) {
		e.printStackTrace();
	}
}

输出结果:Hello cheney

FileOutputStream 一样,生成了 output.txt,内容:Hello cheney

4.标准输入输出

System.inSystem.out 分别代表标准输入和标准输出,可以通过 ScannerSystem.out.println 进行读取和写入。

java 复制代码
public static void main(String[] args) {
	try (Scanner scanner = new Scanner(System.in)) {
		System.out.println("请输入: ");
		String input = scanner.nextLine();
		System.out.println("你输入了: " + input);
	}
}

程序运行:

5.最佳实践

  1. 使用 try-with-resources: 在 Java 7 引入的 try-with-resources 语句可以自动关闭实现 AutoCloseable 接口的资源,避免手动关闭资源的繁琐操作。
  2. 使用缓冲流提高性能: 使用 BufferedInputStreamBufferedOutputStreamBufferedReaderBufferedWriter 可以显著提高读写性能。
  3. 慎用字节流和字符流的转换: 在字符流和字节流之间进行转换时,要确保正确的字符集,以免出现乱码或数据丢失。
  4. 避免频繁的 I/O 操作: 尽量减少 I/O 操作的次数,可以通过缓存数据、合并写入等方式来提高效率。
  5. 处理异常: 在进行文件 I/O 操作时,要适时处理异常,确保程序的稳定性。
  6. 使用 NIO(New I/O): Java 提供了 NIO 包,它提供了更灵活、高效的 I/O 操作,适用于高性能的网络编程和文件处理。

Java I/O 提供了丰富的工具和类库,使得程序能够轻松地进行数据的输入和输出操作。了解各种流的特性、选择合适的类和使用最佳实践,能够编写出高效、可维护的 I/O 代码。

相关推荐
ChinaRainbowSea7 分钟前
1. 初始 RabbitMQ 消息队列
java·中间件·rabbitmq·java-rabbitmq
lmryBC4917 分钟前
golang接口-interface
java·前端·golang
ゞ 正在缓冲99%…17 分钟前
leetcode75.颜色分类
java·数据结构·算法·排序
孤独得猿18 分钟前
Qt常用控件第一部分
服务器·开发语言·qt
慕斯策划一场流浪23 分钟前
fastGPT—nextjs—mongoose—团队管理之团队列表api接口实现
开发语言·前端·javascript·fastgpt env文件配置·fastgpt团队列表接口实现·fastgpt团队切换api·fastgpt团队切换逻辑
橘猫云计算机设计30 分钟前
基于springboot的考研成绩查询系统(源码+lw+部署文档+讲解),源码可白嫖!
java·spring boot·后端·python·考研·django·毕业设计
时光呢34 分钟前
JAVA常见的 JVM 参数及其典型默认值
java·开发语言·jvm
橙橙子23036 分钟前
c++柔性数组、友元、类模版
开发语言·c++·柔性数组
程序媛学姐43 分钟前
SpringKafka错误处理:重试机制与死信队列
java·开发语言·spring·kafka
2401_840192271 小时前
如何学习一门计算机技术
开发语言·git·python·devops