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;
    }

    }
  • 相关阅读:
    【总结】st表
    【luogu】p2024 食物链
    【总结】stl(以后还会慢慢补上
    【总结】二叉堆
    【luogu】p1631 序列合并
    才子们博客地址
    Lemon测评软件使用说明 (对比cena)
    Cena编译器的使用 及任大佬和禚大佬解释(O2优化、C++11特性、开栈)值得大家学习
    编程求100内的素数
    【关于德育和道德方面】
  • 原文地址:https://www.cnblogs.com/BigIdiot/p/2281994.html
Copyright © 2011-2022 走看看