zoukankan      html  css  js  c++  java
  • JAVA_序列化和反序列化

    package com.kk.review;

    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.ObjectInputStream;
    import java.io.ObjectOutputStream;
    import java.io.Serializable;

    public class SerializableTest {
    public static void main(String[] args) {
    try{
    ObjectOutputStream oos=new ObjectOutputStream(new FileOutputStream("Employee"));
    Employee me=new Employee("kk",22,7788.99);
    oos.writeObject(me);
    oos.close();

    ObjectInputStream ois=new ObjectInputStream(new FileInputStream("Employee"));
    Employee review=(Employee) ois.readObject();
    System.out.println(review.getSalary());//输出0.0,这是double的初始化默认值,故没有被序列化
    }catch(IOException ioe){
    ioe.printStackTrace();
    }catch(ClassNotFoundException cfe){
    cfe.printStackTrace();
    }
    }
    }

    class Employee implements Serializable {
    private static final long serialVersionUID = 7404853604198492990L;

    private String name;

    private int age;

    private transient double salary; //transient:透明的,也就是不被序列化

    public Employee() {
    }

    public Employee(String name, int age, double salary) {
    this.name = name;
    this.age = age;
    this.salary = salary;
    }

    private void writeObject(ObjectOutputStream oos){
    System.out.println("这个方法将在序列化时前被执行,可以用来对字段操作,例如加密");
    }

    private void readObject(ObjectInputStream ois){
    System.out.println("这个方法将在反序列化时后被执行,可以用来对字段操作,例如解密");
    }

    public int getAge() {
    return age;
    }

    public void setAge(int age) {
    this.age = age;
    }

    public String getName() {
    return name;
    }

    public void setName(String name) {
    this.name = name;
    }

    public double getSalary() {
    return salary;
    }

    public void setSalary(double salary) {
    this.salary = salary;
    }

    }
  • 相关阅读:
    激光打印机基于主机驱动程序、基于 PCL 驱动程序和 PostScript 驱动程序有何区别?
    转贴:打印机语言PostScript和PCL的比较
    编译器相关配置简介
    Graphics View的体系结构
    解决重装Qt后不能编译Examples的问题
    有符号数和无符号数的区别
    51单片机的外设
    AT89S52单片机P3口解惑
    双向端口设计
    AT89s52单片机的掉电测试
  • 原文地址:https://www.cnblogs.com/BigIdiot/p/2281994.html
Copyright © 2011-2022 走看看