IO流-----各种流(对象流,内存流,打印流,随机访问流)

各种流

  • 各种流:
    • 对象流:
      • 操作:
        • 对象输入输出流:
          • 写入数据:
          • 读取数据:
    • 内存流:
      • 内存输出流:
      • 内存输入流:
    • 打印流:
      • 字节打印流:
      • 字符打印流:
    • 随机访问流:
      • 写入数据:
      • 读取数据:
      • 拷贝文件:

各种流:

  1. 对象流

  2. 内存流

  3. 打印流

  4. 随机访问流

 
 

对象流:

对象流:将程序中的对象写入到文件,并且从文件中读取出对象到程序里。

class ObjectInputStream – 对象输入流

class ObjectOutputStream – 对象输出流

序列化(钝化):将程序里的对象写入到文件。

反序列化(活化):将文件里的对象读取到程序中。

tips:

  1. 如果对象想写入文件,对象所属的类就必须实现序列化接口(Serializable)。
  2. Serializable序列化接口没有任何的属性和方法,这种接口称之为标记型接口。
  3. 对象所属的类实现了序列化接口一定要添加序列化ID(serialVersionUID),不然改变对象所属的类就会报错,因为前后的对象所属的类的序列化ID不一致。
  4. 属性使用transient修饰,该属性不会随着对象而写入到文件中。

 

操作:

对象输入输出流:
写入数据:

利用对象输出流 向文件写入数据。

public static void main(String[] args) throws FileNotFoundException, IOException {//1.创建流对象ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("io.txt"));//2.写入数据oos.writeInt(100);//写入int值oos.writeDouble(123.123);//写入double值oos.writeUTF("今天天气真好!");//写入字符串oos.writeObject(new Date());//写入对象//3.关闭资源oos.close();}

 
 

利用对象输出流 向文件写入自定义对象。

public static void main(String[] args) throws FileNotFoundException, IOException {//1.创建流对象ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("io.txt"));//2.写入自定义对象oos.writeObject(new User("1234567890", "123123", "晴天", "晴天娃娃", "无极剑圣", 10000, 10000));oos.writeObject(new User("1234543267", "111222", "雨天", "雨天娃娃", "九尾妖狐", 8000, 9000));oos.writeObject(new User("1243657687", "123456", "多云", "伤心娃娃", "逆羽", 9000, 8000));oos.writeObject(null);//3.关闭资源oos.close();}

 
 
 

读取数据:

利用对象输入流 读取文件里的数据。

public static void main(String[] args) throws FileNotFoundException, IOException, ClassNotFoundException {//1.创建流对象ObjectInputStream ois = new ObjectInputStream(new FileInputStream("io.txt"));//2.读取数据(读取顺序必须和写入顺序一致)int readInt = ois.readInt();double readDouble = ois.readDouble();String str = ois.readUTF();Date date = (Date) ois.readObject();System.out.println(readInt);System.out.println(readDouble);System.out.println(str);System.out.println(date);//3.关闭资源ois.close();}

 
 

利用对象输入流 读取文件中的自定义对象。

import java.io.Serializable;public class User implements Serializable{//注意点1private static final long serialVersionUID = 4907921883130742331L;private String username;//注意点2private transient String password;private String nickName;private String name;private String role;private double hp;private double mp;public User() {}public User(String username, String password, String nickName, String name, String role, double hp, double mp) {this.username = username;this.password = password;this.nickName = nickName;this.name = name;this.role = role;this.hp = hp;this.mp = mp;}public String getUsername() {return username;}public void setUsername(String username) {this.username = username;}public String getPassword() {return password;}public void setPassword(String password) {this.password = password;}public String getNickName() {return nickName;}public void setNickName(String nickName) {this.nickName = nickName;}public String getName() {return name;}public void setName(String name) {this.name = name;}public String getRole() {return role;}public void setRole(String role) {this.role = role;}public double getHp() {return hp;}public void setHp(double hp) {this.hp = hp;}public double getMp() {return mp;}public void setMp(double mp) {this.mp = mp;}@Overridepublic String toString() {return "User [username=" + username + ", password=" + password + ", nickName=" + nickName + ", name=" + name+ ", role=" + role + ", hp=" + hp + ", mp=" + mp + "]";}
}
public static void main(String[] args) throws FileNotFoundException, IOException, ClassNotFoundException {//1.创建流对象ObjectInputStream ois = new ObjectInputStream(new FileInputStream("io.txt"));//2.读取自定义对象User user;while((user = (User)ois.readObject()) != null){System.out.println(user);}//3.关闭资源ois.close();}

 
 

内存流:

应用场景:项目中频繁使用的数据可以使用内存流备份一份。

class ByteArrayInputStream – 内存输入流

class ByteArrayOutputStream – 内存输出流

tips:

  1. 内存流是程序和内存交互,跟文件无关(与硬盘无关)。
  2. 内存流是程序到内存的通道,是关闭不掉的。

 

内存输出流:

public static void main(String[] args) throws IOException {//1.创建流对象ByteArrayOutputStream baos = new ByteArrayOutputStream();//2.写入数据 -- 将数据写入到baos对象中的byte数组里//new 的数组在堆里面,在内存中。baos.write("123abc木头人".getBytes());//关闭资源(内存流是程序到内存的通道,是关闭不掉的)//baos.close();//获取流对象里的数据System.out.println(new String(baos.toByteArray()));System.out.println(baos.toString());}

 
 

内存输入流:

public static void main(String[] args) throws IOException {//1.创建流对象ByteArrayInputStream bais = new ByteArrayInputStream("123abc木头人".getBytes());//2.读取数据byte[] bs = new byte[1024];int len;while((len = bais.read(bs)) != -1){System.out.println(new String(bs, 0,len));//关闭资源(内存流是程序到内存的通道,是关闭不掉的)//bais.close();}}

 
 

打印流:

lass PrintStream – 字节打印流

class PrintWriter – 字符打印流

tips:

​        打印流实际上就是输出流,只有一个方向(程序->文件)。

PrintStream 和 PrintWriter 区别:
 
​ 区别1:

​        PrintStream是以字节为单位。

​        PrintWriter是以字符为单位。
 
​ 区别2:

​        PrintStream:将字节流转换为字节打印流。

​        PrintWriter:将字节流和字符流转换为字符打印流。

 
 

字节打印流:

public static void main(String[] args) throws IOException {//1.创建流对象//PrintStream ps = new PrintStream("io.txt");//1.创建流对象(字节流 -> 字节打印流)//PrintStream ps = new PrintStream(new FileOutputStream("io.txt"));//1.创建流对象(字节流 -> 字节打印流) + 在末尾追加PrintStream ps = new PrintStream(new FileOutputStream("io.txt",true));//2.写入数据ps.write("今天天气真好!".getBytes());//3.关闭资源ps.close();}

 
 

字符打印流:

public static void main(String[] args) throws IOException {//1.创建流对象//PrintWriter pw = new PrintWriter("io.txt");//1.创建流对象(字节流 -> 字节打印流)//PrintWriter pw = new PrintWriter(new FileOutputStream("io.txt"));//1.创建流对象(字节流 -> 字节打印流) + 在末尾追加//PrintWriter pw = new PrintWriter(new FileOutputStream("io.txt",true));//1.创建流对象(字符流 -> 字符打印流)//PrintWriter pw = new PrintWriter(new FileWriter("io.txt"));//1.创建流对象(字符流 -> 字符打印流) + 在末尾追加//PrintWriter pw = new PrintWriter(new FileWriter("io.txt",true));//1.创建流对象(设置编码格式 + 在末尾追加 + 考虑到效率)//设置编码格式----->OutputStreamWriter//在末尾追加------>FileOutputStream//考虑到效率------>BufferedWriterPrintWriter pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(new FileOutputStream("io.txt",true), "GBK")));//2.写入数据pw.write("今天天气真好!");//3.关闭资源pw.close();}

 
 

随机访问流:

随机访问流:该流认为文件是一个大型的byte数组。有一个隐藏的指针(默认为0),其实就是下标,可以从指针的位置写入或读取,意味着该流两个方向(写入–>输出流,读取–>输入流)。

 
模式:r-读,rw-读写

class RandomAccessFile – 随机访问流

 
 

写入数据:

利用随机访问流 向文件写入数据。
 
需求1:向文件写入 数字、英文、中文数据。

public static void main(String[] args) throws IOException {//1.创建流对象RandomAccessFile w = new RandomAccessFile("io.txt", "rw");//2.写入数据w.write("123abc木头人".getBytes());//3.关闭资源w.close();}

 
 

利用随机访问流 向文件写入数据。
 
需求1:向文件写入 数字、英文、中文数据。
 
需求2:在文件末尾追加。

public static void main(String[] args) throws IOException {//1.创建流对象File file = new File("io.txt");RandomAccessFile w = new RandomAccessFile(file, "rw");//设置指针的位置,把指针移到文件末尾w.seek(file.length());//2.写入数据w.write("123abc木头人".getBytes());//3.关闭资源w.close();}

 
 

读取数据:

利用随机访问流 读取文件里的数据。
 
需求1:读取数据。

public static void main(String[] args) throws IOException {//1.创建流对象RandomAccessFile r = new RandomAccessFile("io.txt", "r");//2.读取数据byte[] bs = new byte[1024];int len;while((len = r.read(bs)) != -1){System.out.println(new String(bs, 0, len));}//3.关闭资源r.close();}

 
 

利用随机访问流 读取文件里的数据。
 
需求1:读取数据。
 
需求2:从英文处开始读取数据。

public static void main(String[] args) throws IOException {//1.创建流对象RandomAccessFile r = new RandomAccessFile("io.txt", "r");//设置指针的位置r.seek(3);//2.读取数据byte[] bs = new byte[1024];int len;while((len = r.read(bs)) != -1){System.out.println(new String(bs, 0, len));}//3.关闭资源r.close();}

 
 

拷贝文件:

public static void main(String[] args) throws IOException {RandomAccessFile r = new RandomAccessFile("Original.mp4", "r");RandomAccessFile w = new RandomAccessFile(copy.mp4, "rw");byte[] bs = new byte[1024];int len;while((len = r.read(bs)) != -1){w.write(bs, 0, len);}r.close();w.close();
}

 
 

断点续传!

public static void main(String[] args) throws IOException {RandomAccessFile r = new RandomAccessFile("Original.mp4", "r");File targetFile = new File("copy.mp4");RandomAccessFile w = new RandomAccessFile(targetFile, "rw");//设置指针long fileLength = targetFile.length();r.seek(fileLength);w.seek(fileLength);byte[] bs = new byte[1024];int len;while((len = r.read(bs)) != -1){w.write(bs, 0, len);}r.close();w.close();}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/848592.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

linux和 qnx 查看 网卡网络流量

netstat -i netstat -i和-s-CSDN博客

BOM 常见对话框用法

当涉及到 BOM(浏览器对象模型)中的对话框时,我们可以使用以下方法来与用户进行交互。 alert() 对话框: 这个对话框用于向用户显示一个简单的提示信息,并等待用户点击确定按钮后关闭对话框。 alert("Hello World!");conf…

前后端项目知识概述总结

一、什么是ECharts? 是一个开源的,纯JavaScript的图表库,它提供了一整套丰富的图表类型,包括折线图、柱状图、饼图、雷达图、散点图、地图、热力图、箱型图等等,用于各种数据的可视化需求 二、什么是JSP? 建立在Servl…

Windows 2000 Server:安全配置终极指南

"远古技术,仅供娱乐" 💭 前言:Windows 2000 服务器在当时的市场中占据了很大的比例,主要原因包括操作简单和易于管理,但也经常因为安全性问题受到谴责,Windows 2000 的安全性真的那么差吗&#x…

虹科免拆诊断案例 | 2013 款路虎神行者 2 车偶发性无法起动

故障现象 一辆2013款路虎神行者2车,搭载2.0 L Si4 Petrol发动机,累计行驶里程约为4.5万km。车主反映,车辆偶发性无法起动,故障出现时,尝试起动发动机,组合仪表上会出现“挡位不在驻车挡”“充电系统故障”…

python如何根据xy坐标在png图片上标记红点

要在Python中根据x、y坐标在PNG图片上标记红点,你可以使用PIL(Python Imaging Library,也称为Pillow)库。以下是一个简单的示例,展示了如何做到这一点: 首先,确保你已经安装了Pillow库。如果没…

【阿里云】在云服务器ECS 安装MySQL、本地远程连接或宝塔连接(手动部署)

目录 一、安装MySQL 二、配置MySQL 三、远程访问MySQL数据库 四、Navicat本地连接远程MySQL 五、宝塔连接MySQL 如果你是使用宝塔安装的MySQL请绕过,以下是通过命令行模式(手动部署)进行安装、配置及运行。 安装:MySQL8.0 …

【java前端课堂】01_final和private的区别

目录 简介: 下面是这两个关键字的简单总结: 示例: 使用 final 限制类不被继承: 简介: 在Java中,我们使用final来限制一个类不被其他类继承,这是为了确保类的实现不会被修改或破坏。而private…

【golang学习之旅】Go中的cron定时任务

系列文章 【golang学习之旅】报错:a declared but not used 【golang学习之旅】Go 的基本数据类型 【golang学习之旅】深入理解字符串string数据类型 【golang学习之旅】go mod tidy 【golang学习之旅】记录一次 panic case : reflect: reflect.Value.SetInt using…

【天气预报game】

要编写一个简单的天气预报游戏代码,我们可以使用Python语言。这个游戏可以模拟基本的天气预报功能,让玩家输入一个城市,然后返回该城市的天气情况。我们可以使用一个预定义的天气数据库,或者使用网络服务来获取实时天气数据。 下面…

Python编程学习第一篇——制作一个小游戏休闲一下

到上期结束,我们已经学习了Python语言的基本数据结构,除了数值型没有介绍,数值型用的非常广,但也是最容易理解的,将在未来的学习中带大家直接接触和学习掌握。后续我们会开始学习这门语言的一些基础语法和编程技巧&…

cs与msf权限传递

cs传递到msf 1,先启动cs ┌──(root㉿ring04h)-[~/cobalt_strike_4.7] └─# ./teamserver 192.168.196.144 123456 ​ ┌──(root㉿ring04h)-[~/cobalt_strike_4.7] └─# ./start.sh ​ 2,上传木马,上线主机 3,msf配置一个…

暑期社会实践来了,这份投稿攻略你收藏好!

一、文字投稿要求 (一)实践纪实类 1.内容充实,字数不低于1500字,标题10-30字,不允许用“精彩飞扬——大学实践队”形式,要求用一句话标题。导语新闻五要素齐全(即何人、何时、何地、何事、何因…

Qt——升级系列(Level Two):Hello Qt 程序实现、项目文件解析、Qt 编程注意事项

Hello Qt 程序实现 使用“按钮”实现 纯代码方式实现: // Widget构造函数的实现 Widget::Widget(QWidget *parent): QWidget(parent) // 使用父类构造函数初始化QWidget,传入父窗口指针, ui(new Ui::Widget) // 创建Ui::Widget类的实例,并…

人工智能时代,Martech未来的3种场景

多年来,人们一直在预测Martech Landscape的崩溃。成千上万个不同的Martech应用程序将被筛选出少数几个赢家。在过去的12年里,这些预测一直被证明是错误的,年复一年。 但也许,只是也许,人工智能时代将成为拐点&#xf…

dibbler-DHCPv6 的开源框架(C++ 实现)1

一、下载 IPv6 DHCPv6 协议的开源框架:dibbler 下载地址:https://github.com/tomaszmrugalski/dibbler.git 二、代码编写语言和文件结构 编写语言 文件 三、编译 编译 server 端: chmod x configure ./configure# 编译服务端(4核) mak…

AI推介-大语言模型LLMs论文速览(arXiv方向):2024.05.25-2024.05.31

文章目录~ 1.Direct Alignment of Language Models via Quality-Aware Self-Refinement2.Enhancing Noise Robustness of Retrieval-Augmented Language Models with Adaptive Adversarial Training3.Unveiling the Lexical Sensitivity of LLMs: Combinatorial Opt…

golang普通函数与闭包函数使用示例

1.普通函数实现 // 同类开多个参数默认写法 func add2(a int, b int) int {return a b }// 同类开多个参数简洁写法 func add3(a, b, c int) int {return a b c } 2.函数返回多个值实现 // 多个返回值写法 func add(a int, b int) (int, int) {return a * 5, b * 5 }// 多…

戴尔R720服务器(3)组RAID

今天收到7块硬盘,现在共有8块硬盘了,找了个视频学习了怎么使用阵列卡组RAID并记录。 ​​ ‍ 视频参考:【戴尔服务器添加RAID5热备盘hotspare】 ‍ 阵列卡组RAID5 开始 连接iDRAC控制台服务器开机按F2进入BIOS选择Device Settings​ ​​…

Python语言自学:深入探索四个基础、五个进阶、六个实战及七个挑战

Python语言自学:深入探索四个基础、五个进阶、六个实战及七个挑战 Python,作为一种通用编程语言,其简洁的语法、丰富的库和强大的功能,使得越来越多的人选择自学Python。但自学之路并非坦途,本文将从四个方面、五个方…