| 目次 | 前へ | 次へ | Java オブジェクト直列化仕様 Version 6.0  | 
付録 C | 
トピック:
システムクラス java.io.File は、ファイル名を表現し、ファイルやディレクトリを名前で解析および操作するためのメソッドを持ちます。現在のファイル名を含む単一 private フィールドを持ちます。パスを解析するメソッドのセマンティクスは、static フィールドに保持された現在のパス区切り文字に依存します。このパス区切り文字は、読み込み時にファイル名を調節できるように、ファイルの直列化状態の一部になっています。
File オブジェクトの直列化状態は、ファイルの直列化可能フィールドおよびデータ値のシーケンスとして定義されます。この場合は、それぞれ 1 つずつあります。
Serializable Fields:
    String path;     // path name with embedded separators
Serializable Data:
    char            // path name separator for path name
An alternate implementation might be defined as follows:
class File implements java.io.Serializable {
    ...
    private String[] pathcomponents;
    // Define serializable fields with the ObjectStreamClass
    
/**
* @serialField path String
* Path components separated by separator.
*/
	private static final ObjectStreamField[] serialPersistentFields
        = { new ObjectStreamField("path", String.class) };
    ...
	/**
* @serialData Default fields followed by separator character.
*/
    private void writeObject(ObjectOutputStream s)
        throws IOException
    {
        ObjectOutputStream.PutField fields = s.putFields();
        StringBuffer str = new StringBuffer();
        for(int i = 0; i < pathcomponents; i++) {
            str.append(separator);
            str.append(pathcomponents[i]);
        }
        fields.put("path", str.toString());
        s.writeFields();
        s.writeChar(separatorChar); // Add the separator character
    }
    ...
    private void readObject(ObjectInputStream s)
        throws IOException
    {
        ObjectInputStream.GetField fields = s.readFields();
        String path = (String)fields.get("path", null);
        ...
        char sep = s.readChar(); // read the previous separator char
        // parse path into components using the separator
        // and store into pathcomponents array.
    }
}