Java学习系列(十二)Java面向对象之序列化机制及版本

序列化:内存中的Java对象<——>二进制流
目的:a)有时候需要把对象存储到外部存储器中持久化保存,b)还有时候,需要把对象通过网络传输。

可序列化的对象,Java要求可序列化的类实现下面两个接口之一。
——Serializable:接口只是一个标记性的接口,实现该接口无需实现任何方法;——Externalizable实现该接口需要实现方法。

序列化的IO流:
ObjectInputStream ——负责从二进制流“恢复”对象-->从文件中提取对象;ObjectOutputStream ——负责将内存中的对象写入磁盘

举例说明1(注意:一定要实现Serializable接口):

Java代码 收藏代码
  1. publicclassTest{
  2. publicstaticvoidmain(String[]args){
  3. Appleapple=newApple("Xx苹果","红色",2.3);
  4. //System.out.println(apple);
  5. //这里利用了JDK7里面的try()自动关闭资源,好处是不用手动关闭oos
  6. try(ObjectOutputStreamoos=newObjectOutputStream(
  7. newFileOutputStream("f:/1.txt"));){
  8. oos.writeObject(apple);
  9. }catch(IOExceptione){
  10. e.printStackTrace();
  11. }
  12. }
  13. }
  14. classAppleimplementsSerializable{
  15. privateStringname;
  16. privateStringcolor;
  17. privatedoubleweight;
  18. publicApple(){
  19. }
  20. publicApple(Stringname,Stringcolor,doubleweight){
  21. this.name=name;
  22. this.color=color;
  23. this.weight=weight;
  24. }
  25. publicStringgetName(){
  26. returnname;
  27. }
  28. publicvoidsetName(Stringname){
  29. this.name=name;
  30. }
  31. publicStringgetColor(){
  32. returncolor;
  33. }
  34. publicvoidsetColor(Stringcolor){
  35. this.color=color;
  36. }
  37. publicdoublegetWeight(){
  38. returnweight;
  39. }
  40. publicvoidsetWeight(doubleweight){
  41. this.weight=weight;
  42. }
  43. @Override
  44. publicStringtoString(){
  45. return"Apple[color="+color+",name="+name+",weight="
  46. +weight+"]";
  47. }
  48. }

而读取文件中的对象就更简单了(下面省略了上面的Apple类):

Java代码 收藏代码
  1. publicclassTest{
  2. publicstaticvoidmain(String[]args){
  3. try(
  4. ObjectInputStreamois=newObjectInputStream(newFileInputStream(
  5. "f:/1.txt"));){
  6. System.out.println(ois.readObject().toString());
  7. }catch(ClassNotFoundException|IOExceptione){
  8. e.printStackTrace();
  9. }}}

引用变量的序列化机制:
A。引用变量所引用的对象的所有属性都应该是可序列化的。
B。如果要序列化的对象是之前已经序列化的,此时系统序列化一个编号。

这种序列化机制,就是为了保存磁盘里的二进制流与内存中的对象是对应的。transient:用于修饰实例成员变量(不能与static修饰符同时使用)。--用于指定被修饰的field不会被序列化。好处:比如银行卡账号、密码就不应该被序列化出来。【注意】由于static修饰的类变量存储在类信息中,并不存储在对象里,所以有static修饰的类变量不能被序列化。

自定义序列化类:

Java代码 收藏代码
  1. /**
  2. *@authorlhy
  3. *@description自定义序列化类
  4. */
  5. classUserimplementsSerializable{
  6. privatestaticfinallongserialVersionUID=546525067577254190L;
  7. privateStringaccount;
  8. privateStringpassword;
  9. publicUser(){
  10. }
  11. publicUser(Stringaccount,Stringpassword){
  12. this.account=account;
  13. this.password=password;
  14. }
  15. publicStringgetAccount(){
  16. returnaccount;
  17. }
  18. publicvoidsetAccount(Stringaccount){
  19. this.account=account;
  20. }
  21. publicStringgetPassword(){
  22. returnpassword;
  23. }
  24. publicvoidsetPassword(Stringpassword){
  25. this.password=password;
  26. }
  27. @Override
  28. publicStringtoString(){
  29. return"User[account="+account+",password="+password+"]";
  30. }
  31. //下面两个方法,提供给系统调用,系统会调用者两个方法完成实际的序列化
  32. privatevoidwriteObject(ObjectOutputStreamout)throwsIOException{
  33. //序列化User的两个属性
  34. out.writeUTF(account);
  35. out.writeUTF(newStringBuilder(password).reverse().toString());
  36. }
  37. privatevoidreadObject(ObjectInputStreamin)throwsIOException,
  38. ClassNotFoundException{
  39. account=in.readUTF();
  40. password=newStringBuilder(in.readUTF()).reverse().toString();
  41. }
  42. }
  43. publicclassTest{
  44. publicstaticvoidmain(String[]args){
  45. Useruser=newUser("张三","123");
  46. ObjectOutputStreamoos=null;
  47. try{
  48. oos=newObjectOutputStream(newFileOutputStream("f:/1.txt"));
  49. oos.writeObject(user);
  50. }catch(IOExceptione){
  51. e.printStackTrace();
  52. }finally{
  53. try{
  54. oos.close();
  55. }catch(Exceptione2){
  56. e2.printStackTrace();
  57. }
  58. }
  59. }
  60. }

读取文件中的对象:

Java代码 收藏代码
  1. publicclassTest{
  2. publicstaticvoidmain(String[]args){
  3. ObjectInputStreamois=null;
  4. try{
  5. ois=newObjectInputStream(newFileInputStream("f:/1.txt"));
  6. Useruser=(User)ois.readObject();
  7. System.out.println(user.toString());
  8. }catch(Exceptione){
  9. e.printStackTrace();
  10. }finally{
  11. try{
  12. ois.close();
  13. }catch(Exceptione2){
  14. e2.printStackTrace();
  15. }
  16. }
  17. }
  18. }

运行一下,我们可以看到输出:User [account=张三, password=123]

自定义(稳定)序列化:可以借助于“定制序列化”对属性进行一些“加密”。

版本号】当我们的类经常使用时,有时候系统无法确定“发序列化”是的class文件是否还正确。--建议显式为“可序列化”指定一个版本号。--因为系统默认的版本号不稳定(经常改变)。serialver.exe -专门用来查看类的版本号。用法:serialver 序列化的类。--当我们修改了类时,记得要修改版本号。

结束语:

有关Java中的序列化今天就讲到这里,明天开始学习Java面向对象之界面编程。

你可能感兴趣的:(Java学习)