[Java视频笔记]day21

操作对象

ObjectInputStream

ObjectOutputStream

被操作的对象需要实现Serializable(标记接口,没有方法的接口通常称为标记接口)

把对象存到硬盘上,叫做对象的持久化。

一般情况:

import java.io.*;
class Person implements Serializable
{
	String name;
	int age;
	Person(String name, int age)
	{
		this.name = name;
		this.age = age;
	}
	public String toString()
	{
		return name+":"+age;
	}
}

class  day21
{
	public static void main(String[] args) throws Exception
	{
		//writeObj();
		readObj();

	}

	public static void writeObj()throws IOException
	{
		ObjectOutputStream oos = new ObjectOutputStream
			(new FileOutputStream("obj.txt"));
		oos.writeObject(new Person("lisi", 30));
		oos.close();
	}

	public static void readObj() throws Exception
	{
		ObjectInputStream ois = new ObjectInputStream
			(new FileInputStream("obj.txt"));
		Person p = (Person)ois.readObject();
		sop(p);
		ois.close();

	}

	public static void sop(Object obj)
	{
		System.out.println(obj);
	}
}

如果对原来的类进行改变

import java.io.*;

class Person implements Serializable
{
	public static final long serialVersionUID = 42L;
	//给类固定标识,序列化方便,修改后的类才能操作曾经序列化的对象
	private String name;//一开始没Private
	transient int age;//表示age不想被序列化
	static String country = "cn";//静态不能被序列化
	Person(String name, int age, String country)
	{
		this.name = name;
		this.age = age;
		this.country = country;
	}
	public String toString()
	{
		return name+":"+age+":"+country;
	}
}

class  day21
{
	public static void main(String[] args) throws Exception
	{
		//writeObj();
		readObj();

	}

	public static void writeObj()throws IOException
	{
		ObjectOutputStream oos = new ObjectOutputStream
			(new FileOutputStream("obj.txt"));
		oos.writeObject(new Person("lisi4", 350, "sr"));
		oos.close();
	}

	public static void readObj() throws Exception
	{
		ObjectInputStream ois = new ObjectInputStream
			(new FileInputStream("obj.txt"));
		Person p = (Person)ois.readObject();
		sop(p);
		ois.close();

	}

	public static void sop(Object obj)
	{
		System.out.println(obj);
	}
}

管道流

PipedInputStream

PipedOutputStream

有直接联系,一端输入,一端输出。通过结合线程使用。

import java.io.*;

class Read implements Runnable
{
	private PipedInputStream in;
	Read(PipedInputStream in)
	{
		this.in = in;
	}
	public void run()
	{
		try
		{
			byte[] buf = new byte[1024];
			System.out.println("读取前,没有数据就阻塞");
			int len =in.read(buf);
			System.out.println("读到数据,阻塞结束");
			String s = new String(buf, 0, len);
			System.out.println(s);
			in.close();
		}
		catch (IOException e)
		{
			throw new RuntimeException ("管道读取失败");
		}
	}
}

class Write implements Runnable
{
	private PipedOutputStream out;
	Write(PipedOutputStream out)
	{
		this.out = out;
	}
	public void run()
	{
		try
		{
			System.out.println("开始写入数据,等待6秒后");
			Thread.sleep(6000);
			out.write("pipied lai".getBytes());
			out.close();
		}
		catch (Exception e)
		{
			throw new RuntimeException ("管道输出流失败");
		}
	}
}

class  day21
{
	public static void main(String[] args)throws IOException
	{

		PipedInputStream in = new PipedInputStream();
		PipedOutputStream out = new PipedOutputStream();
		in.connect(out);
		Read r = new Read(in);
		Write w = new Write(out);
		new Thread(r).start();
		new Thread(w).start();
	}

	public static void sop(Object obj)
	{
		System.out.println(obj);
	}
}

输出:

读取前,没有数据就阻塞

开始写入数据,等待6秒后

读到数据,阻塞结束

pipied lai

RandomAccessFile

支持对随机访问文件的读取和写入。

该类不算是IO体系中的子类,而是直接继承自Object.但是它是IO包中的成员。因为它具备读和写功能。内部封装了一个数组,而且通过指针对数组的元素进行操作。可以通过

getFilePointer获取指针位置,同时可以通过seek改变指针的位置。

其实完成读写的原理就是内部封装了字节输入流和输出流。

通过构造函数可以看出,该类只能操作文件。

而且操作文件还有模式:只读r,读写rw等。

如果模式为只读r,不会创建文件,会读取一个已存在的文件,如果该文件不存在,则会出现异常。如果模式为rw,操作的文件不存在,会自动创建,如果存在则不会覆盖。

可以用于多线程的下载。

import java.io.*;

class  day21
{
	public static void main(String[] args)throws IOException
	{
		writeFile_2();
	}

	public static void writeFile_2() throws IOException
	{
		RandomAccessFile raf = new RandomAccessFile("ran.txt", "rw");
		raf.seek(8 * 3);
		raf.write("周七".getBytes());
		raf.writeInt(103);
		raf.close();
	}

	public static void readFile()throws IOException
	{
		RandomAccessFile raf = new RandomAccessFile("ran.txt", "r");
		//调整对象中的指针,前后都能指
		//raf.seek(8);
		//跳过指定的字节数,只能往后条,不能往前跳
		raf.skipBytes(8);
		byte[] buf = new byte[4];
		raf.read(buf);
		String name = new String(buf);

		int age = raf.readInt();
		sop("name="+name+"..age="+age);
		raf.close();
	}

	public static void writeFile()throws IOException
	{
		RandomAccessFile raf = new RandomAccessFile("ran.txt", "rw");
		raf.write("李四".getBytes());
		raf.writeInt(97);
		raf.write("王五".getBytes());
		raf.writeInt(99);
		raf.close();
	}

	public static void sop(Object obj)
	{
		System.out.println(obj);
	}
}

DataInputStream

DataOutputStream

可以用于操作基本数据类型的数据的流对象。

import java.io.*;

class  day21
{
	public static void main(String[] args)throws IOException
	{
		//writeData();
		//readData();
		//writeUTFDemo();

		//OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("utf.txt"), "utf-8");
		//osw.write("你好");
		//osw.close();
		readUTFDemo();

	}

	public static void readUTFDemo() throws IOException
	{
		DataInputStream dis = new DataInputStream(new FileInputStream("utfData.txt"));
		String s = dis.readUTF();
		sop(s);
		dis.close();
	}

	public static void writeUTFDemo()throws IOException
	{
		DataOutputStream dos = new DataOutputStream(new FileOutputStream("utfData.txt"));
		dos.writeUTF("你好");//utf-8修改版
		dos.close();
	}
	public static void writeData()throws IOException
	{
		DataOutputStream dos = new DataOutputStream(new FileOutputStream("data.txt"));
		dos.writeInt(234);
		dos.writeBoolean(true);
		dos.writeDouble(92.434);

		dos.close();
	}

	public static void readData() throws IOException
	{
		DataInputStream dis = new DataInputStream(new FileInputStream("data.txt"));
		int num = dis.readInt();
		boolean b = dis.readBoolean();
		double d = dis.readDouble();
		sop("num = " + num);
		sop("b = " + b);
		sop("d = " + d);
		dis.close();

	}
	public static void sop(Object obj)
	{
		System.out.println(obj);
	}
}

用于操作字节数组的流对象。

ByteArrayInputStream: 在构造的时候,需要接受数据源,而且数据源是一个字节数组

ByteArrayOutputStream: 在构造的时候,不用定义数据目的地。因为该对象中已经内部封装了可变长度的字节数组,这就是数据目的地。

因为这两个流对象都操作的数组,并没有使用系统资源。所以,不用进行close关闭。

在流操作规律讲解时:

源设备:

键盘 System.in,硬盘FileStream,内存ArrayStream。

目的设备:

控制台System.out,硬盘FileStream,内存ArrayStream。

用流的读写思想来操作数组。

import java.io.*;

class  day21
{
	public static void main(String[] args)
	{
		//数据源
		ByteArrayInputStream bis = new ByteArrayInputStream("ABCDEFG".getBytes());

		//数据目的
		ByteArrayOutputStream bos = new ByteArrayOutputStream();

		int by = 0;
		while((by = bis.read()) != -1)
		{
			bos.write(by);
		}
		sop(bos.size());
		sop(bos.toString());

		//bos.writeTo(new FileOutputStream("a.txt"));

	}

	public static void sop(Object obj)
	{
		System.out.println(obj);
	}
}

字符流的出现为了方便操作字符。

更重要的是加入了编码转换

通过子类转换流来完成。

InputStreamReader

OutputStreamWriter

在两个对象进行构造的时候可以加入字符集。

常见的编码表

ASCII:美国标准信息交换码,用一个字节的7位表示。

ISO8859-1:拉丁码表,欧洲码表,用一个字节的8位表示。

GB2312:中国的中文编码表

GBK:中国的中文编码表升级,融合了更多的中文文字字符号

Unicode:国际标准码,融合了多种文字。所有的文字都是用两个字节来表示,java语言使用的就是unicode

UTF-8:一个字节能装下,用1个字节,两个字节能装下用两个字节,最多用三个字节来表示一个字符。

import java.io.*;

class  day21
{
	public static void main(String[] args)throws IOException
	{
		//writeText();
		readText();
	}

	public static void readText() throws IOException
	{
		InputStreamReader isr = new InputStreamReader(new FileInputStream("gbk.txt"), "UTF-8");
		char[] buf = new char[10];
		int len = isr.read(buf);
		String str = new String(buf, 0, len);
		sop(str);
		isr.close();
	}

	public static void writeText()throws IOException
	{
		OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("gbk.txt"), "UTF-8");
		osw.write("你好");
		osw.close();
	}

	public static void sop(Object obj)
	{
		System.out.println(obj);
	}
}

编码:字符串变成字节数组。

解码:字节数组变成字符串。

String ---->byte[]    str.getBytes();默认GBK编码表  str.getBytes(charsetName);指定编码表

byte[] ------>String new String(byte[]);默认GBK编码表,new String(byte[], charsetName);指定编码表

import java.io.*;
import java.util.*;
class  day21
{
	public static void main(String[] args)throws Exception
	{
		String s = "你好";
		byte[] b1 = s.getBytes();
		sop(Arrays.toString(b1));//输出[-60, -29, -70, -61]

		b1 = s.getBytes("GBK");
		sop(Arrays.toString(b1));//输出[-60, -29, -70, -61],表示gbk是默认编码表

		//解码,编码和解码用到的编码表要保持一致
		sop(new String(b1));//输出你好
		sop(new String(b1, "GBK"));//输出你好

		String str = new String(b1, "ISO8859-1");
		sop(str);//输出????
		//对str进行ISO8859-1编码
		byte[] b2 = str.getBytes("ISO8859-1");//里面保存[-60, -29, -70, -61]
		String s2 = new String(b2, "GBK");
		sop(s2);//输出 你好

	}

	public static void sop(Object obj)
	{
		System.out.println(obj);
	}
}

上述代码原理图:

但是把上面的ISO8859-1 改成UTF-8则不行,因为UTF-8和GBK都识别中文,ISO8859-1则不识别中文。一定要小心。

练习:有5个学生,每个学生有3门课的成绩。

从键盘输入以上数据(包括姓名,三门课成绩)

输入的格式为:zhangsan,30,40,60

计算出总成绩,并把学生的信息和计算出的总分数按高低顺序存放在磁盘文件stuinfo.txt中

步骤:

1. 描述学生对象。

2. 定义一个可操作学生对象的工具类

思想:

1. 通过获取键盘录入的一行数据,并将该行中的数据取出封装成学生对象

2. 因为学生对象有很多,那么就需要存储,使用到集合。因为要对学生的总分排序,所以可以使用TreeSet。

3.将集合中的信息写入到一个文件中。

import java.io.*;
import java.util.*;

class Student implements Comparable<Student>
{
	private String name;
	private int ma, cn, en;
	private int sum;
	Student(String name, int ma, int cn, int en)
	{
		this.name = name;
		this.ma = ma;
		this.cn = cn;
		this.en = en;
		sum = ma + cn + en;
	}

	public int compareTo(Student s)
	{
		int num = new Integer(this.sum).compareTo(new Integer(s.sum));
		if(num == 0)
			return this.name.compareTo(s.name);
		return num;
	}
	public String toString()
	{
		return "Student["+name+", "+ma+", "+en+"]";
	}

	public String getName()
	{
		return name;
	}

	public int getSum()
	{
		return sum;
	}

	public int hashCode()
	{
		return name.hashCode() + sum * 38;
	}

	public boolean equals(Object obj)
	{
		if(!(obj instanceof Student))
			throw new ClassCastException("类型不匹配");
		Student s = (Student)obj;
		return this.name.equals(s.name) && this.sum == s.sum;
	}
}

class StudentInfoTool
{
	public static Set<Student> getStudents()throws IOException
	{
		return getStudents(null);
	}

	public static Set<Student> getStudents(Comparator<Student> cmp)throws IOException
	{
		BufferedReader bufr = new BufferedReader
			(new InputStreamReader(System.in));
		String line = null;
		Set<Student> stus = null;
		if(cmp == null)
			stus = new TreeSet<Student>();
		else
			stus = new TreeSet<Student>(cmp);
		while((line = bufr.readLine()) != null)
		{
			if("over".equals(line))
				break;
			String[] info = line.split(",");
			Student stu = new Student(info[0], Integer.parseInt(info[1]),
				Integer.parseInt(info[2]),Integer.parseInt(info[3]));
			stus.add(stu);

		}
		bufr.close();
		return stus;
	}

	public static void writeToFile(Set<Student> stus)throws IOException
	{
		BufferedWriter bufw = new BufferedWriter(new FileWriter("stuinfo.txt"));
		for(Student stu : stus)
		{
			bufw.write(stu.toString()+"\t");
			bufw.write(stu.getSum()+"");
			bufw.newLine();
			bufw.flush();
		}
		bufw.close();
	}

}

class  day21
{
	public static void main(String[] args)throws IOException
	{
		Comparator<Student> cmp = Collections.reverseOrder();
		Set<Student> stus = StudentInfoTool.getStudents(cmp);
		StudentInfoTool.writeToFile(stus);
	}
}

文件中写入内容为:

Student[wangwu, 34, 343]       427

Student[lisi, 90, 90]                    270

Student[zhangsan, 30, 23]       83

时间: 2024-08-13 16:29:39

[Java视频笔记]day21的相关文章

一名测试初学者听JAVA视频笔记(一)

搭建pho开发环境与框架图 韩顺平 第一章: No1  关于文件以及文件夹的管理 将生成的文本文档做成详细信息的形式,显示文件修改时间以及文件大小,便于文件查看和管理,也是对于一名IT人士高效能工作的专业素养要求.如下图所示: 为了方便Java文件能够及时正确的找到,需要对电脑进行环境配置,要注意一下四个问题: 1.在硬盘中对所有文件夹进行管理,全部设置.点击,工具 > 查看 2.勾选显示文件及所有文件夹 3.去掉隐藏已知文件拓展名,防止出现类如 xxx .java.java 4.显示文件的完全

[Java视频笔记]day23

网络编程 网络模型:OSI参考模型,TCP/IP参考模型 网络通讯要素:IP地址,端口号,传输协议 IP地址(对应对象 InetAddress) 网络中设备的标识 不易记忆,可用主机名 本地回环地址:127.0.0.1主机名:localhost import java.net.*; class day23 { public static void main(String[] args) throws Exception { InetAddress i = InetAddress.getLocal

[Java视频笔记]day16

集合Map: 该集合存储键值对,一对一对往里存,而且要保证键的唯一性. 1.添加 put(Kkey, V value) putAll(Map<?extends K,? extends V> m) 2.删除 clear() remove(Object key) 3.判断 containsValue(Object value) containsKey(Object key) isEmpty() 4.获取 get(Objectkey) size() values() entrySet()  返回此映

[Java视频笔记]day14

为什么出现集合类? 面向对象语言对事物的体现都是以对象的形式,所以为了方便对多个对象的操作,就对对象进行存储,集合就是存储对象最常用的一种方式. 数组和集合类同是容器,有何不同? 数组虽然也可以存储对象,但长度是固定的,集合长度是可变的.数组中可以存储基本对象类型,集合只能存储对象,对象可以不同. 1. add方法的参数类型是Object,以便于接收任意类型对象. 2. 集合中存储的都是对象的引用(地址) 什么是迭代器呢? 其实就是集合的取出元素的方式. 共性方法代码: import java.

[Java视频笔记]day19

字符流的缓冲区 1. 缓冲区的出现提高了对数据的读写效率. 2. 对应类 BufferedWriter BufferedReader 3. 缓冲区要结合流才可以使用 4. 在流的基础上对流的功能进行了增强 缓冲区的出现是为了提高流的操作效率而出现的.所以在创建缓冲区之前,必须要先有流对象. 该缓冲区中提供了一个跨平台的换行符,newLine()方法. BufferedWriter import java.io.*; class day19 { public static void main(St

[Java视频笔记]day18

类 System: 类中的方法和属性都是静态的. out: 代表标准输出,默认是控制台. in: 标准输入,默认是键盘. 描述系统的一些信息. 获取系统属性信息:Properties getProperties(); import java.util.*; class day18 { public static void main(String[] args) { Properties prop = System.getProperties(); //因为Properties是HashTable

[Java视频笔记]day20

File类 1. 用来将文件或者文件夹封装成对象 2. 方便对文件与文件夹的属性信息进行操作(流只能操作数据) 3. File对象可以作为参数传递给流的构造函数 File类常见方法: 1. 创建 boolean createNewFile();在指定位置创建文件,如果该文件已经存在,则不创建,返回false.和输出流不一样,输出流对象一建立就创建文件,而且文件已经存在,则覆            盖. boolean mkdir():创建文件夹 boolean mkdirs():创建多级文件夹

[java] 视频笔记

1 命名规则 class命名:第一个字母大写 变量命名:第一个字母小写 包命名:第一个字母小写 2 方法本质:实现方法的复用 3 类是对象的一个模板,对象是类的实例化. 对象也就是实例(Object    instance) 属性也就是成员变量 4 作为面向对象的思维来说,当你考虑一个问题时,不应该考虑第一步该干嘛,第二步该干嘛,这个是面向过程的编程思维,而应该考虑: (1)考虑问题有哪些类和对象: (2)这些类和对象有哪些属性和方法: (3)这些类(对象)之间的关系是什么. 类(对象)之间的关

java视频笔记--------String

String的相关知识点: 1.String 的构造方法: String()  创建一个空内容 的字符串对象. String(byte[] bytes)  使用一个字节数组构建一个字符串对象 String(byte[] bytes, int offset, int length) bytes :  要解码的数组 offset: 指定从数组中那个索引值开始解码. length: 要解码多个元素. String(char[] value)  使用一个字符数组构建一个字符串. String(char[