Java学习路线-26:字节流与字符流OutputStream/InputStream/Writer/Reader

简介: Java学习路线-26:字节流与字符流OutputStream/InputStream/Writer/Reader

第16章 字节流与字符流

72 流的基本概念

File类是唯一一个与文件本身有关的程序处理类

File类只能够操作文件本身,而不能操作文件内容


IO操作:输入输出操作


java.io 抽象类


输出            输入
字节流:OutputStream, InputStream
字符流:Writer,       Reader

文件处理流程:

1、File找到一个文件

2、通过字节流或字符流的子类为父类对象实例化

3、利用字节流或字符流中的方法实现数据出入与输出操作

4、流的操作属于资源操作,资源操作必须进行关闭


73 OutputStream字节输出流

实现代码


public interface AutoCloseable {
    void close() throws Exception;
}
public interface Closeable extends AutoCloseable {
    public void close() throws IOException;
}
public interface Flushable {
    void flush() throws IOException;
}
public abstract class OutputStream 
    implements Closeable, Flushable{
    public abstract void write(int b) throws IOException;
    public void write(byte b[]) throws IOException;
    public void write(byte b[], int off, int len) throws IOException;
}
// 子类
public class FileOutputStream extends OutputStream{
    // 覆盖
    public FileOutputStream(File file) throws FileNotFoundException
    // 追加
    public FileOutputStream(File file, boolean append) 
        throws FileNotFoundException;
}

内容输出到文件


import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
class Demo{
    public static void main(String[] args) throws IOException {
        File file = new File("demo/demo.txt");
        // 父级目录不存在则创建
        if(!file.getParentFile().exists()){
            file.getParentFile().mkdir();
        }
        String message = "这是输出的内容";
        // 将字符串转换为字节数组输出到文件,并关闭文件
        FileOutputStream output = new FileOutputStream(file);
        output.write(message.getBytes());
        output.close();
    }
}

自动关闭的写法


try(FileOutputStream output = new FileOutputStream(file)){
    output.write(message.getBytes());
}catch (IOException e){
    e.printStackTrace();
}

使用追加换行输出


String message = "这是输出的内容\r\n";
FileOutputStream output = new FileOutputStream(file, true);
output.write(message.getBytes());
output.close();

74 InputStream字节输入流

public abstract class InputStream implements Closeable{
    // 读取单个字节数据,读到文件底部返回-1
    public abstract int read() throws IOException;
    // 读取一组字节数据,返回读取的个数,文件底部返回-1
    public int read(byte b[]) throws IOException;
    public int read(byte b[], int off, int len) throws IOException;
}

文件尾部返回 -1, 表示文件读取完成


子类


public class FileInputStream extends InputStream{
    public FileInputStream(String name) throws FileNotFoundException
    public FileInputStream(File file) throws FileNotFoundException
}

读取示例


import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
class Demo{
    public static void main(String[] args) throws IOException {
        File file = new File("demo/demo.txt");
        FileInputStream input = new FileInputStream(file);
        // 开辟缓冲区读取数据
        byte[] data = new byte[1024];
        int len = input.read(data);
        System.out.println("["  + new String(data, 0, len) + "]");
        input.close();
    }
}

75 Writer字符输出流

Writer可以直接输出字符串


public abstract class Writer 
    implements Appendable, Closeable, Flushable{
        public void write(char cbuf[]) throws IOException;
        public void write(String str) throws IOException;
    }
public class OutputStreamWriter extends Writer
public class FileWriter extends OutputStreamWriter{
    public FileWriter(String fileName, boolean append);
    public FileWriter(String fileName)
    public FileWriter(File file)
    public FileWriter(File file, boolean append)
}

代码实例


import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
class Demo{
    public static void main(String[] args) throws IOException {
        File file = new File("demo/demo.txt");
        FileWriter writer = new FileWriter(file);
        writer.write("hello java");
        writer.append("你好!java!");
        writer.close();
    }
}

76 Reader字符输入流

继承关系


public abstract class Reader implements Readable, Closeable
public class InputStreamReader extends Reader
public class FileReader extends InputStreamReader{
    public FileReader(File file);
    public FileReader(String fileName);    
}

读取示例


import java.io.File;
import java.io.FileReader;
import java.io.IOException;
class Demo{
    public static void main(String[] args) throws IOException {
        File file = new File("demo/demo.txt");
        FileReader reader = new FileReader(file);
        char[] data= new char[1024];
        int len = reader.read(data);
        System.out.println(new String(data, 0, len));
        reader.close();
    }
}

字符流读取只能按照数组数据读取


77 字节流与字符流的区别

不使用close关闭

使用字节流输出 OutputStream 正常输出

使用字符流输出 Writer 无法输出,使用了缓冲区


close会强制刷新缓冲区(flush)


字节流不使用缓冲区,字符流使用缓冲区


78 转换流

字节流与字符流操作的功能转换


import java.io.*;
class Demo{
    public static void main(String[] args) throws IOException {
        File file = new File("demo/demo.txt");
        // 字节流转字符流操作
        OutputStream out = new FileOutputStream(file);
        Writer wirter = new OutputStreamWriter(out);
        wirter.write("你好");
        wirter.close();
    }
}

继承关系


OutputStream(Closeable, Flushable)
    -FileOutputStream
InputStream(Closeable)
    -FileInputStream
Writer(Appendable, Closeable, Flushable)
    -OutputStreamWriter
        -FileWriter
Reader(Readable, Closeable)
    -InputStreamReader
        -FileReader

缓存,程序中间缓冲区


字节数据:101010101…


79 综合实战:文件拷贝

实现文件拷贝操作

使用字节流


方案一:

全部读取,一次性输出

方法二:

每次读取一部分,输出一部分


import java.io.*;
class FileUtil {
    public static void copyFile(String src, String target) throws IOException {
        InputStream input = new FileInputStream(src);
        OutputStream output = new FileOutputStream(target);
        byte[] data = new byte[1024];
        int len = 0;
        while ((len = input.read(data)) != -1) {
            output.write(data, 0, len);
        }
        input.close();
        output.close();
    }
    public static void copyDir(String src, String target) throws IOException {
        File srcFile = new File(src);
        File targetFile = new File(target);
        if (!targetFile.exists()) {
            targetFile.mkdirs();
        }
        File[] results = srcFile.listFiles();
        if (results != null) {
            for (File file : results) {
                String fileName = targetFile + File.separator + file.getName();
                if (file.isDirectory()) {
                    copyDir(file.getPath(), fileName);
                } else {
                    copyFile(file.getPath(), fileName);
                }
            }
        }
    }
}
class Demo {
    public static void main(String[] args) throws IOException {
        FileUtil.copyDir("demo", "demo2");
        System.out.println("拷贝完成");
    }
}

如果拷贝目录则使用递归拷贝

相关文章
|
1月前
|
Java 数据处理 开发者
揭秘Java IO流:字节流与字符流的神秘面纱!
揭秘Java IO流:字节流与字符流的神秘面纱!
35 1
|
1月前
|
自然语言处理 Java 数据处理
Java IO流全解析:字节流和字符流的区别与联系!
Java IO流全解析:字节流和字符流的区别与联系!
74 1
|
3月前
|
存储 缓存 Java
15 Java IO流(File类+IO流+字节流+字符流+字节编码)
15 Java IO流(File类+IO流+字节流+字符流+字节编码)
53 3
Java InputStream从文件读取示例
本文目录 1. 知识点 2. 代码示例 3. 运行结果
378 0
Java InputStream从文件读取示例
|
8天前
|
安全 Java 测试技术
Java并行流陷阱:为什么指定线程池可能是个坏主意
本文探讨了Java并行流的使用陷阱,尤其是指定线程池的问题。文章分析了并行流的设计思想,指出了指定线程池的弊端,并提供了使用CompletableFuture等替代方案。同时,介绍了Parallel Collector库在处理阻塞任务时的优势和特点。
|
17天前
|
安全 Java
java 中 i++ 到底是否线程安全?
本文通过实例探讨了 `i++` 在多线程环境下的线程安全性问题。首先,使用 100 个线程分别执行 10000 次 `i++` 操作,发现最终结果小于预期的 1000000,证明 `i++` 是线程不安全的。接着,介绍了两种解决方法:使用 `synchronized` 关键字加锁和使用 `AtomicInteger` 类。其中,`AtomicInteger` 通过 `CAS` 操作实现了高效的线程安全。最后,通过分析字节码和源码,解释了 `i++` 为何线程不安全以及 `AtomicInteger` 如何保证线程安全。
java 中 i++ 到底是否线程安全?
|
4天前
|
安全 Java 开发者
深入解读JAVA多线程:wait()、notify()、notifyAll()的奥秘
在Java多线程编程中,`wait()`、`notify()`和`notifyAll()`方法是实现线程间通信和同步的关键机制。这些方法定义在`java.lang.Object`类中,每个Java对象都可以作为线程间通信的媒介。本文将详细解析这三个方法的使用方法和最佳实践,帮助开发者更高效地进行多线程编程。 示例代码展示了如何在同步方法中使用这些方法,确保线程安全和高效的通信。
22 9
|
7天前
|
存储 安全 Java
Java多线程编程的艺术:从基础到实践####
本文深入探讨了Java多线程编程的核心概念、应用场景及其实现方式,旨在帮助开发者理解并掌握多线程编程的基本技能。文章首先概述了多线程的重要性和常见挑战,随后详细介绍了Java中创建和管理线程的两种主要方式:继承Thread类与实现Runnable接口。通过实例代码,本文展示了如何正确启动、运行及同步线程,以及如何处理线程间的通信与协作问题。最后,文章总结了多线程编程的最佳实践,为读者在实际项目中应用多线程技术提供了宝贵的参考。 ####
|
4天前
|
监控 安全 Java
Java中的多线程编程:从入门到实践####
本文将深入浅出地探讨Java多线程编程的核心概念、应用场景及实践技巧。不同于传统的摘要形式,本文将以一个简短的代码示例作为开篇,直接展示多线程的魅力,随后再详细解析其背后的原理与实现方式,旨在帮助读者快速理解并掌握Java多线程编程的基本技能。 ```java // 简单的多线程示例:创建两个线程,分别打印不同的消息 public class SimpleMultithreading { public static void main(String[] args) { Thread thread1 = new Thread(() -> System.out.prin
|
7天前
|
Java
JAVA多线程通信:为何wait()与notify()如此重要?
在Java多线程编程中,`wait()` 和 `notify()/notifyAll()` 方法是实现线程间通信的核心机制。它们通过基于锁的方式,使线程在条件不满足时进入休眠状态,并在条件满足时被唤醒,从而确保数据一致性和同步。相比其他通信方式,如忙等待,这些方法更高效灵活。 示例代码展示了如何在生产者-消费者模型中使用这些方法实现线程间的协调和同步。
21 3