首页 > JavaIO4--ObjectInputStream和ObjectOutputStream

JavaIO4--ObjectInputStream和ObjectOutputStream

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

ObjectInputStream 和 ObjectOutputStream 介绍

ObjectInputStream 和 ObjectOutputStream 的作用是,对基本数据和对象进行序列化操作支持

创建“文件输出流”对应的ObjectOutputStream对象,该ObjectOutputStream对象能提供对“基本数据或对象”的持久存储;当我们需要读取这些存储的“基本数据或对象”时,可以创建“文件输入流”对应的ObjectInputStream,进而读取出这些“基本数据或对象”。

注意: 只有支持 java.io.Serializable 或 java.io.Externalizable 接口的对象才能被ObjectInputStream/ObjectOutputStream所操作!

ObjectOutputStream 函数列表

// 构造函数  
ObjectOutputStream(OutputStream output)  
// public函数  
void     close()  
void     defaultWriteObject()  
void     flush()  
ObjectOutputStream.PutField     putFields()  
void     reset()  
void     useProtocolVersion(int version)  
void     write(int value)  
void     write(byte[] buffer, int offset, int length)  
void     writeBoolean(boolean value)  
void     writeByte(int value)  
void     writeBytes(String value)  
void     writeChar(int value)  
void     writeChars(String value)  
void     writeDouble(double value)  
void     writeFields()  
void     writeFloat(float value)  
void     writeInt(int value)  
void     writeLong(long value)  
final void     writeObject(Object object)  
void     writeShort(int value)  
void     writeUTF(String value)  
void     writeUnshared(Object object) 
ObjectInputStream 函数列表

// 构造函数  
ObjectInputStream(InputStream input)  int     available()  
void     close()  
void     defaultReadObject()  
int     read(byte[] buffer, int offset, int length)  
int     read()  
boolean     readBoolean()  
byte     readByte()  
char     readChar()  
double     readDouble()  
ObjectInputStream.GetField     readFields()  
float     readFloat()  
void     readFully(byte[] dst)  
void     readFully(byte[] dst, int offset, int byteCount)  
int     readInt()  
String     readLine()  
long     readLong()  
final Object     readObject()  
short     readShort()  
String     readUTF()  
Object     readUnshared()  
int     readUnsignedByte()  
int     readUnsignedShort()  
synchronized void     registerValidation(ObjectInputValidation object, int priority)  
int     skipBytes(int length)

演示程序

package org.credo.jdk.io.ObjectStreamTest;import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;public class ObjectStreamTest
{public static void main(String[] args){try{testWrite();testRead();} catch (IOException | ClassNotFoundException e){e.printStackTrace();}}private static final String TMP_FILE = "computer.tmp";public static void testWrite() throws FileNotFoundException, IOException{ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream(TMP_FILE));out.writeBoolean(true);out.writeByte((byte) 65);out.writeChar('a');out.writeInt(20131015);out.writeFloat(3.14F);out.writeDouble(1.414D);// 写入HashMap对象  HashMap map = new HashMap<>();  map.put("one", "red");  map.put("two", "green");  map.put("three", "blue");  out.writeObject(map);  // 写入自定义的Computer对象,Computer实现了Serializable接口  Computer computer=new Computer(1, 5666.66, "Y480");out.writeObject(computer);out.close();}@SuppressWarnings("rawtypes")public static void testRead() throws FileNotFoundException, IOException, ClassNotFoundException{ObjectInputStream in=new ObjectInputStream(new FileInputStream(TMP_FILE));System.out.printf("boolean:%b
" , in.readBoolean());  System.out.printf("byte:%d
" , (in.readByte()&0xff));  System.out.printf("char:%c
" , in.readChar());  System.out.printf("int:%d
" , in.readInt());  System.out.printf("float:%f
" , in.readFloat());  System.out.printf("double:%f
" , in.readDouble());// 读取HashMap对象  HashMap map = (HashMap) in.readObject();Iterator iterator=map.entrySet().iterator();while (iterator.hasNext()){Map.Entry mapEntry = (Map.Entry) iterator.next();System.out.printf("%-6s -- %s
" , mapEntry.getKey(), mapEntry.getValue());}//读取ComputerComputer computer=(Computer)in.readObject();System.out.println("computer: " + computer);in.close();}}class Computer implements Serializable
{private static final long serialVersionUID = -6347513352513264586L;private int id;private double price;private String name;public Computer(int id,double price,String name) {this.id=id;this.price=price;this.name=name;}public int getId(){return id;}public void setId(int id){this.id = id;}public double getPrice(){return price;}public void setPrice(double price){this.price = price;}public String getName(){return name;}public void setName(String name){this.name = name;}@Overridepublic int hashCode(){return HashCodeBuilder.reflectionHashCode(this);}@Overridepublic boolean equals(Object obj){return EqualsBuilder.reflectionEquals(this, obj);}@Overridepublic String toString(){return ToStringBuilder.reflectionToString(this);}}

输出

boolean:true
byte:65
char:a
int:20131015
float:3.140000
double:1.414000
three  -- blue
two    -- green
one    -- red
computer: org.credo.jdk.io.ObjectStreamTest.Computer@4935b92e[id=1,price=5666.66,name=Y480]



转载于:https://my.oschina.net/zhaoqian/blog/343448

更多相关:

  • 因为函数参数是按值传递的,所以要想改变变量,必须传递地址。 二级指针实际上就是指针变量的地址,如果传递二级指针,函数声明必须写**。 (void**)&必须是本质上就是指针变量的地址才可以做这样的转换,并不是说把一个一级指针也可以转换,void**的本质是标识一个二级指针。 &data就是(默认数据类型 **)&data,(void...

  • 文章目录1. 解决问题2. 应用场景3. 实现如下:C++实现C语言实现4. 缺点 1. 解决问题 在工厂方法模式中,我们卖衣服。此时我们为每一种衣服创建不同的工厂,帽子有一个工厂专门创建,裤子有一个工厂专门创建,T恤有一个工厂专门创建。这样的方式保证了代码设计的开闭原则(对扩展开发,对修改关闭),解决了简单工厂模式中暴露的...

  • 转载于:http://blog.csdn.net/u012819339/article/details/50654764   实体作品请参看优酷视频。 若以上链接点击无效请把该链接地址复制到浏览器地址栏 http://v.youku.com/v_show/id_XODYzODczNzQ4.html 说明: 该作品为arvik于2014...

  • - (void)viewDidLoad {[super viewDidLoad];NSLog(@"我在玩手机");NSLog(@"手机没电了");[self chargeMyIphone:^{NSLog(@"出门逛街");}];NSLog(@"我在看电视"); }-(void)chargeMyIphone:(void(^)(void...

  • http://stackoverflow.com/questions/150446/how-do-i-detect-when-someone-shakes-an-iphone 我的实现(基于Eran Talmor): 没必要application.applicationSupportsShakeToEdit = YES; Set th...

  •         Apache POI是一个开源的利用Java读写Excel,WORD等微软OLE2组件文档的项目。        我的需求是对Excel的数据进行导入或将数据以Excel的形式导出。先上简单的测试代码:package com.xing.studyTest.poi;import java.io.FileInputSt...

  • 要取得[a,b)的随机整数,使用(rand() % (b-a))+ a; 要取得[a,b]的随机整数,使用(rand() % (b-a+1))+ a; 要取得(a,b]的随机整数,使用(rand() % (b-a))+ a + 1; 通用公式:a + rand() % n;其中的a是起始值,n是整数的范围。 要取得a到b之间的...

  • 利用本征图像分解(Intrinsic Image Decomposition)算法,将图像分解为shading(illumination) image 和 reflectance(albedo) image,计算图像的reflectance image。 Reflectance Image 是指在变化的光照条件下能够维持不变的图像部分...

  • 题目:面试题39. 数组中出现次数超过一半的数字 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。 你可以假设数组是非空的,并且给定的数组总是存在多数元素。 示例 1: 输入: [1, 2, 3, 2, 2, 2, 5, 4, 2] 输出: 2 限制: 1 <= 数组长度 <= 50000 解题: cl...

  • 题目:二叉搜索树的后序遍历序列 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历结果。如果是则返回 true,否则返回 false。假设输入的数组的任意两个数字都互不相同。 参考以下这颗二叉搜索树:      5     /    2   6   /  1   3示例 1: 输入: [1,6,3,2,5] 输出...

  • importjava.security.SecureRandom;importjavax.crypto.Cipher;importjavax.crypto.SecretKey;importjavax.crypto.SecretKeyFactory;importjavax.crypto.spec.DESKeySpec;//结果与DES算...

  • 题目:替换空格 请实现一个函数,把字符串 s 中的每个空格替换成"%20"。 输入:s = "We are happy." 输出:"We%20are%20happy." 限制: 0 <= s 的长度 <= 10000 解题: 时间复杂度:O(n) 空间复杂度:O(n) class Solution { public:s...

  • 在C++11标准库中,string.h已经添加了to_string方法,方便从其他类型(如整形)快速转换成字面值。 例如: for (size_t i = 0; i < texArrSize; i++)RTX_Shader.SetInt(string("TexArr[") + to_string(i) + "]", 7 + i);...

  • Ubuntu 14.04安装并升级之后,变成楷体字体非常难看,我昨天搞了一晚上,终于理了个头绪,这里整理一下。 经过网上调研,大家的一致看法是,使用开源字体库文泉驿的微黑字体效果比较理想,甚至效果不输windows平台的雅黑字体。下面我打算微黑来美化Ubuntu 14.04. 1.安装文泉驿微黑字体库 sudo aptitude...

  • 使用string时发现了一些坑。 我们知道stl 容器并不是线程安全的,所以在使用它们的过程中往往需要一些同步机制来保证并发场景下的同步更新。 应该踩的坑还是一个不拉的踩了进去,所以还是记录一下吧。 string作为一个容器,随着我们的append 或者 针对string的+ 操作都会让string内部的数据域动态增加,而动态增加的...