Java程序猿必学第二十一篇—— IO字符流

2024-02-28 07:20

本文主要是介绍Java程序猿必学第二十一篇—— IO字符流,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

//1. 字节流-对象流//对象流: ObjectOutputStream/ObjectInputStream
//1. 也是一个处理流,是一个带缓冲区的流
//2. 增加了存储对象的功能//=========================对象流存单个对象========================
//案例: 对象流存储自定义对象//存储自定义对象的类,必须实现序列化,才可通过对象流存储
//Serializable:标记型接口,无需实现重写方法
class Person implements Serializable{private String name;public Person(String name) {this.name=name;}@Overridepublic String toString() {return "Person [name=" + name + "]";}}
public class Test1 {@Test  //单元测试,只需在成员方法中+@Testpublic void writeTest() throws FileNotFoundException, IOException {ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("a.txt"));//oos.writeObject(new String("zsf")); //存字符串oos.writeObject(new Person("zsf"));  //存自定义对象-序列化oos.close();}@Testpublic void readTest() throws  IOException, ClassNotFoundException   {ObjectInputStream ois = new ObjectInputStream(new FileInputStream("a.txt"));//String person = (String)ois.readObject();Person person = (Person) ois.readObject(); //反序列化System.out.println(person);ois.close();}
}//=====================对象流存多个对象======================//1.在对象流中可以设置某些属性不参与序列化--transient,static
//2.读写多个对象的问题
//方式1:捕获异常
//方式2:使用集合存储//细节:字节节点流可以往文件追加内容,所以,处理流,字节缓冲流,对象流都可以追加内容
//追加内容往往只用在存日志中(且更多的是字符流存日志-效率更高)
class Student implements Serializable{//产生序列化版本ID,在版本升级时,能唯一识别private static final long serialVersionUID = -5702534791901064731L;private String name;private /*transient*/ /*static*/ int    age; //transient,static:修饰该属性不参与序列化public Student(String name, int age) {super();this.name = name;this.age = age;}@Overridepublic String toString() {return "Student [name=" + name + ", age=" + age + "]";}}
public class Test2 {@Test //注意:当前包中一定不能有Test类public void writeTest() throws IOException {ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("a.txt", true));//方式1:直接存多个对象,获取时捕获异常/*oos.writeObject(new Student("zsf", 30));oos.writeObject(new Student("ls", 34));oos.writeObject(new Student("ww", 35));*///方式2:存集合List<Student> list = new ArrayList<Student>();list.add(new Student("zsf", 30));list.add(new Student("ls", 34));oos.writeObject(list);oos.close();}@Testpublic void readTest() throws ClassNotFoundException, IOException {ObjectInputStream ois = new ObjectInputStream(new FileInputStream("a.txt"));//方式1:捕获异常/*try {while(true) {Student st = (Student) ois.readObject();System.out.println(st);}} catch (Exception e) {}finally {ois.close();}*///方式2:通过集合获取List<Student> list = (List<Student>) ois.readObject();System.out.println(list);ois.close();}
}//2. 字符流
//字符流: 通过一个字符一个字符读写,效率比字节流高,但只能读写文本文件
//抽象父类: Writer/Reader//2.1. 字符节点流
//字符节点流:FileWriter/FileReader(富二代流) 
//特点:可以追加存储,及简化代码量public class Test1 {@Testpublic void writeTest() throws IOException {FileWriter fw = new FileWriter("a.txt",true);  //参数2:追加fw.write("hello,world");fw.close();}@Testpublic void readTest() throws IOException {FileReader fr = new FileReader("a.txt");char[] cbuf = new char[1024];int len=fr.read(cbuf);System.out.println(new String(cbuf,0,len));fr.close();}
}//2.2 字符缓冲流(重点)
//字符缓冲流: BufferedWriter/BufferedReader
//带缓冲的字符流,读写效率非常高
//提供了两个非常常用的方法,读写换行:newLine/readLinepublic class Test1 {@Testpublic void writeTest() throws IOException {BufferedWriter bw = new BufferedWriter(new FileWriter("a.txt"));for(int i=0;i<5;i++) {bw.write("好好学习..."+i);bw.newLine(); //写内容换行}bw.close();}@Testpublic void readTest() throws IOException {BufferedReader br = new BufferedReader(new FileReader("a.txt"));String msg;while((msg=br.readLine())!=null) {System.out.println("打印:"+msg);}}
}//2.3 打印输出流
//PrintWriter: 输出字符流 , 输出内容到文件 
//具有print/println等方法,用于打印换行
//支持原样打印
public class Test1 {public static void main(String[] args) throws FileNotFoundException {PrintWriter pw = new PrintWriter("a.txt");pw.println(66);pw.println(3.14);pw.close();//PrintStream:输出字节流   系统调的,输出到系统的控制台//PrintWriter与PrintStream都是打印输出流,只不过一个是字节流,一个是字符流System.out.println(66);System.out.println(3.14);}
}//2.4 字符转换流
//字符转换流: OutputStreamWriter/InputStreamReader
//该类直接从字节流转换到字符流的
//转换流可以进行乱码处理: 用什么编码写,那么就用什么编码读,才不会出现乱码
public class Test2 {@Testpublic  void writeTest() throws IOException {//OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("a.txt"));//字符转换流,可以进行读写时编码设置OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("a.txt"),"GBK");osw.write("hello,io流");osw.close();}@Testpublic void readTest() throws IOException {InputStreamReader isr = new InputStreamReader(new FileInputStream("a.txt"),"GBK");char[] cbuf = new char[1024];int len = isr.read(cbuf);System.out.println(new String(cbuf,0,len));isr.close();}
}//3.File类
//File类:IO流是基于文件内容的读写; File类用于操作文件或目录的本身信息//3.1 File类常用方法//File类的常用方法:
//只需要指定好File对象的路径,则可知道该对象的信息
public class Test1 {public static void main(String[] args) {// File file = new File("a.txt");File file = new File("E:\\Users\\Administrator\\eclipse-workspace\\Day22_CharIO\\b.txt");System.out.println("是否为文件:" + file.isFile());System.out.println("是否为目录:" + file.isDirectory()); // 目录就是文件夹System.out.println("是否为可读:" + file.canRead());System.out.println("是否为可写:" + file.canWrite());System.out.println("是否为隐藏:" + file.isHidden());System.out.println("获取绝对路径:" + file.getAbsolutePath());System.out.println("获取相对路径:" + file.getPath());System.out.println("获取文件名:" + file.getName());System.out.println("获取父级目录:" + file.getParentFile());System.out.println("获取文件长度:" + file.length());System.out.println("文件是否存在:" + file.exists());System.out.println("最后一次修改时间:" + file.lastModified());Date date = new Date(file.lastModified());SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");System.out.println(sdf.format(date));//System.out.println("重命名:" + file.renameTo(new File("b.txt")));System.out.println("删除文件或删除空目录:"+file.delete());}
}//3.2 创建不存在父级目录的文件 
//File类的应用:
//创建指定目录下的文件; 如果上一级目录不存在,则先创建上一级目录
//分析:先获取父级目录,如果父级目录不存在,则创建; 然后再创建子文件
public class Test2 {public static void main(String[] args) throws IOException {File file = new File("a/b/a.txt");//获取父级目录File parent = file.getParentFile();if(parent!=null&&!parent.exists()) {if(parent.mkdirs()) {System.out.println("创建父级目录成立");}}if(!file.exists()){if(file.createNewFile()) {System.out.println("创建文件成功");}}}
}//3.3 查找当前层的txt文件
//案例:在指定的a目录下,查找当前层txt为后缀的文件
//分析:1.后缀为txt;2.是文件
//具体操作:实例化a目录的对象;取出下面的文件和目录;再进行判断
public class Test3 {public static void main(String[] args) {File file = new File("a");File[] files = file.listFiles(); //获取指定目录的所有文件,存到File数组中//遍历数组if(files!=null) {for(File f:files) {if(f.isFile()&&f.getName().endsWith(".txt")){System.out.println(f);}}}}
}//3.4 递归操作文件
//扩展:如果需要找多层的txt
//递归,往往就用在File中
//概述: 自己调自己,且需要退出的出口;
//回顾说明: 如果能用其他方式,尽量不要用递归;两个弊端:1.效率低   2.容易死递归//使用递归条件:
//1.定义一个方法,找出有规律的数列  
//2.要有退出的出口--文件夹中没有目录了public class Test4 {public static void main(String[] args) {f(new File("a"));}private static void f(File file) {File[] files = file.listFiles(); //获取指定目录的所有文件,存到File数组中//遍历数组if(files!=null) {for(File f:files) {if(f.isFile()&&f.getName().endsWith(".txt")){System.out.println(f);}else if(f.isDirectory()) {f(f);  //是目录,则递归调自己  //a/b}}}}
}

 

这篇关于Java程序猿必学第二十一篇—— IO字符流的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/754755

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听

在cscode中通过maven创建java项目

在cscode中创建java项目 可以通过博客完成maven的导入 建立maven项目 使用快捷键 Ctrl + Shift + P 建立一个 Maven 项目 1 Ctrl + Shift + P 打开输入框2 输入 "> java create"3 选择 maven4 选择 No Archetype5 输入 域名6 输入项目名称7 建立一个文件目录存放项目,文件名一般为项目名8 确定