程序员_Java基础之<十二>-IO流<3>其他流对象、编码

<对象序列化>

对象序列化:

将堆内存中的对象存入硬盘,保留对象中的数据,称之为对象的持久化(或序列化)

特有方法:

1、write(int val)   --->  写入一个字节(最低八位)

2、writeInt(int vale)  --->   吸入一个32为int值

步骤:

1、写入流对象:

1)创建对象写入流,与文件关联,即传入目的

2)通过写入writeObject()方法,将对象作为参数传入,即可写入文件

2、读取流对象

1)创建对象读取流,与文件关联,即传入源

2)通过writeObject()方法,读取文件中的对象,并返回这个对象

注解:serialVersion

a、给类一个可被编译器识别的的序列号,在编译类时,会分配一个long型UID,通过序列号,将类存入硬盘中,并序列化,即持久化。序列号根据成员算出的。静态不能被序列化。如果非静态成员也无需序列化,可以用transien修饰。

b、接口Serializable中没有方法,称之为标记接口

实例:
<span style="font-family:KaiTi_GB2312;font-size:18px;color:#333333;">import java.io.*;
class Person implements Serializable
{
public static final long serialVersionUID=42L;
//强制自定义该类的UID,那么在此类改变时,该UID就不会再改变,方便对象的序列化。
String name;
transient int age;//如果对于非静态成员也不想被序列化,在成员前加上transient即可
Personn(String name,int age)
{
this.name=name;
this.age=age;
}
static String country="cn";//注意:静态成员时不能被序列化的,因为静态成员在方法区,而对象在堆中。
public String toString()
{
return name+":"+age+":"+country;
}
}


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


}
public static void writeObj()throws Exception//存入
{
ObjectOutputStream oos=
new ObjectOutputStream(new FileOutputStream("obj.txt"));//输出对象到文件输出流,然后到obj.txt文件里


oos.writeObject(new Person("lisi",39));//对象序列化,即将对象存入到文件里


oos.close();


}
public static void readObj()//读
{
ObjectInputStream ois=new ObjectInputStream(new FileInputStream("obj"));


Person p=(Person)ois.readObject();


System.out.println(p);
ois.close();
}


}
</span>



<管道流> 

管道流:PipedInputStream和PipedOutputStream

步骤:

1、要先创建一个读和写的两个类,实现Runnable接口,因为是两个不同的线程,覆盖run方法,注意,需要在内部抛异常

2、创建两个管道流,并用connect()方法将两个流连接

3、创建读写对象,并传入两个线程内,并start执行

注意:管道流涉及到多线程的问题


<span style="font-family:KaiTi_GB2312;font-size:18px;color:#333333;">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("piped lai la".getBytes());
out.close();
}
catch (IOException e)
{
throw new RuntimeException("管道输出流失败");
}
}
}


class PipedStreamDemo
{
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();
}
}</span>




<RandomAccessFile>

此类的实例支持对随机文件的读取和写入。
该类不算是IO体系中子类。而是直接继承自Object。


但是他是IO包中的成员。因为它具备读和写功能。
内部封装了一个数组,而且通过指针对数组的元素进行操作。
可以通过getFilePointer获取指针位置。同时可以通过seek改变指针的位置。


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


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


构造方法:RandomAccessFile(File file,String mode)
 RandomAccessFile(String name,String mode)
其中mode模式只接收这四种参数:"r","rw","rws","rwd"


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


*/

<span style="font-family:KaiTi_GB2312;font-size:18px;color:#333333;">import java.io.*;
class RandomAccessFileDemo
{
public static void main(String[] args)throws IOException
{
//writeFile();
//readFile();
writeFile_2();
}
public static void writeFile()throws IOException//写
{
RandomAccessFile raf=new RandomAccessFile("ran.txt","rw");


raf.write("李四".getBytes());
//raf.write(258);
//注意:write方法只能写出数据的最低八位。要全写出用writeInt(),可写出32位。
raf.writeInt(97);


raf.write("王五".getBytes());
raf.writeInt(99);

raf.close();
}
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];//两个汉字4个字节
raf.read(buf);
String name=new String(buf);
System.out.println("name="+name);


//读出年龄
int age=raf.readInt();
System.out.println("age="+age);
raf.close();
}

}
</span>

 <DataStream:操作基本数据的流>

RandomAccessFile称之为随机访问文件的类,自身具备读写方法。

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

2、可以完成读写的原理:内部封装了字节输入流

3、构造函数:RandomAccessFile(File file,String mode),可已从它的构造函数中看出,该类只能操作文件(也有字符串),而且操作文件还有模式。

模式传入值:”r“:以只读方式打开;”rw“:打开以便读写

如果模式为只读,则不会创建文件,会去读一个已存在的文件,若文件不存在,则会出现异常,如果模式为rw,且该对象的构造函数要操作的文件不存在,会自动创建,如果存在,则不会覆盖,也可通过seek方法修改。


特有方法:

1、seek(int n):设置指针,可以将指针设置到前面或后面

2、skipBytes(int n):跳过指定字节数,不可往前跳

步骤:

1、创建RandomAccessFile对象

2、将数据写入到指定文件中

3、读取数据,读入到指定文件中

a.调整对象的指针:seek()

b.跳过指定字节数


<span style="font-family:KaiTi_GB2312;font-size:18px;color:#333333;">import java.io.*;
class DataStreamDemo
{
public static void main(String[] args)throws IOException
{
writeData();
readData();
writeUTFDemo();
readUTFDemo();
}
public static void writeData()throws IOException
{
DataOutputStream dos=new DataOutputStream(new FileOutputStream("data.txt"));


dos.writeInt(234);
dos.writeBoolean(true);
dos.writeDouble(9887.543);


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();


System.out.println("num="+num);
System.out.println("b="+b);
System.out.println("d="+d);


dis.close();


}
public static void writeUTFDemo()throws IOException//使用 UTF-8 修改版编码将一个字符串写入输出流
{
DataOutputStream dos=new DataOutputStream(new FileOutputStream("utfdata.txt"));
dos.writeUTF("你好");
dos.close();
}
public static void readUTFDemo()throws IOException//读 UTF-8修改版编码写的文件。
{
DataInputStream dis=new DataInputStream(new FileOutputStream("utfdata.txt"));
String s=dis.readUTF();
System.out.println(s);
dis.close();
}

}
</span>



<操作字节数组的流>
ByteArrayInputStream:在构造时,需要接收数据源,而且数据源是一个字节数组。


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


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


在流操作规律讲解时:
源设备:
键盘System.in
硬盘FileStream
内存ArrayStream
目的设备:
控制台System.out
硬盘FileStream
内存ArrayStream
用流的读写思想来操作数据。


同时与操作字节数组类似的还有:
操作字符数组:CharArrayReader和CharArrayWrite

<span style="font-family:KaiTi_GB2312;font-size:18px;color:#333333;">import java.io.*;
class ByteArrayStream
{
public static void mian(String[] args)
{
//数据源
ByteArrayInputStream bis=new ByteArrayInputStream("ABCDEFD".getBytes());
//数据目的
ByteArrayOutputStream bos=new ByteArrayOutputStream();//将数据写到数组里
int by=0;
while((by=bis.read())!=-1)
{
bos.write(by);
}


System.out.println(bos.size());
System.out.println(bos.toString());


// bos.writeTo(new FileOutputStream("a.txt") );//写到流里,但是它要报异常。


}
}</span>

<字符编码>
常见的编码表:


ASCII:美国标准信息交换码。
用一个字节的7位可以表示。
ISO8859-1:拉丁码表。欧洲码表
用一个字节的8位表示。
GB2312:中国的中文编码表。
GBK:中国的中文编码表升级,融合了更多的中文文字符号。
Unicode:国际标准码,融合了多种文字。
所有文字都用两个字节来表示,Java语言使用的就是unicode
UTF-8:最多用三个字节来表示一个字符。
......




<span style="font-family:KaiTi_GB2312;font-size:18px;color:#333333;">import java.io.*;
class EncodeStream
{
	public static void main(String[] args)throws IOException
	{
		writeText();
		readText();
	}
	public static void writeText()throws IOException
	{
		OutputStreamWriter osw=
			new OutputStreamWriter(new FileOutputStream("utf.txt"),"UTF-8");


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


		System.out.println(str);
		isr.close();
	}
}
</span>



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


  String-->byte[]:str.getBytes();
  byte[]-->String:new String(byte[]);


*/
<span style="font-family:KaiTi_GB2312;font-size:18px;color:#333333;">import java.util.*;
class EncodeDemo
{
	public static void main(String[] args)throws Exception
	{
		//编码
		String s="你好";
		byte[] b1=s.getBytes("utf-8");//默认为GBK编码(2个字节)。utf-8为3个字节。
		System.out.println(Arrays.toString(b1));


		//用错误的编码表解码
		String s1=new String(b1,"ISO8859-1");
		System.out.println("s1="+s1);


		//这时对解码出的错误数据再进行编码
		byte[] b2=s.getBytes("ISO8859-1");
		System.out.println(Arrays.toString(b2));


		//用正确的编码表解码
		String s2=new String(b1,"UTF-8");
		System.out.println("s1="+s2);




		
	}
}
</span>



/*编码-联通*/
/*
注解:联通的二进制是:
11000001
10101010
11001101
10101000
当将联通二进制存入记事本时,采用的是GBK编码,保存时发现联通的二进制
符合utf-8的编码头的形式(110.. 10..),于是采用utf-8的形式保存,就出错了。
*/
<span style="font-family:KaiTi_GB2312;font-size:18px;color:#333333;">class EncodeDemo2
{
	public static void main(String[] args)throws Exception
	{
		String s="联通";
		byte[] by=s.getBytes("gbk");
		for(byte b:by)
		{
			System.out.println(Integer.toBinargString(b&255));
		}


	}
}
</span>



/*编码练习:


有五个学生,每个学生有3门课的成绩,
从键盘输入以上数据(包括姓名,三门课成绩),
输入的格式:如:zhangsan,30,40,60计算出总成绩,
并把学生的信息和计算出的总分高低顺序存放在磁盘文件"stud.txt"中。


思路:
1.描述学生对象。
2.定义一个可以操作学生对象的工具类。


思想:
1.通过获取键盘录入一行数据,并将该行中的信息取出封装成学生对象。
2.因为学生对象有很多,那么就需要存储,使用到集合,因为要对学生的总分排序。
所以可使用TreeSet
3.将集合的信息写入到一个文件中。
*/
<span style="font-family:KaiTi_GB2312;font-size:18px;color:#333333;">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 getName()
	{
		return name;
	}
	public int getSum()
	{
		return sum;
		
	}
	public int hasCode()
	{
		return name.hashCode()+sum*78;
	}
	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;
	}
	public String toString()
	{
		return "student["+name+","+ma+","+cn+","+en+"]";
	}
}
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 write2File(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 StudentInfoTest
{
	public static void main(String[] args)throws IOException
	{
		Comparator<Student> cmp=Collections.reverseOrder();//将原有比较方法进行反转,创建比较器。
		Set<Student> stus=StudentInfoTool.getStudents(cmp);
		 StudentInfoTool.write2File(stus);
	}
}</span>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值