當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.ObjectInputStream.getField.get()用法及代碼示例



描述

這個java.io.ObjectInputStream.getField.get(String name, short val)方法從持久字段中獲取命名短字段的值。

聲明

以下是聲明java.io.ObjectInputStream.getField.get()方法。

public abstract   short get(String name, short val)

參數

  • name− 字段名稱。

  • val− name 沒有值時使用的默認值。

返回值

此方法返回命名的短字段的值。

異常

  • IOException− 如果從底層 InputStream 讀取時出現 I/O 錯誤。

  • IllegalArgumentException− 如果名稱類型不可序列化或字段類型不正確。

示例

下麵的例子展示了使用java.io.ObjectInputStream.getField.get()方法。

package com.tutorialspoint;

import java.io.*;

public class ObjectInputStreamDemo implements Serializable {
   public static void main(String[] args) {
      try {
         // create a new file with an ObjectOutputStream
         FileOutputStream out = new FileOutputStream("test.txt");
         ObjectOutputStream oout = new ObjectOutputStream(out);

         // write something in the file
         oout.writeObject(new Example());
         oout.flush();
         oout.close();

         // create an ObjectInputStream for the file we created before
         ObjectInputStream ois = new ObjectInputStream(new FileInputStream("test.txt"));

         // read an object from the stream and cast it to Example
         Example a = (Example) ois.readObject();

         // print var of a
         System.out.println("" + a.var);
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }

   static public class Example implements Serializable {
      static short var = 5;
      
      // assign a new serialPersistentFields 
      private static final ObjectStreamField[] serialPersistentFields = {
         new ObjectStreamField("var", Short.TYPE)
      };

      private void readObject(ObjectInputStream in)
         throws IOException, ClassNotFoundException {

         // get the field and assign it at var
         ObjectInputStream.GetField fields = in.readFields();

         // get var
         short d = 87;
         var = fields.get("var", d);
      }

      private void writeObject(ObjectOutputStream out) throws IOException {

         // write into the ObjectStreamField array the variable string
         ObjectOutputStream.PutField fields = out.putFields();
         fields.put("var", var);
         out.writeFields();
      }
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

5

相關用法


注:本文由純淨天空篩選整理自 Java.io.ObjectInputStream.getField.get() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。