BinaryFormatter クラスとは? わかりやすく解説

BinaryFormatter クラス

オブジェクト、または連結され複数オブジェクトから成るグラフ全体を、バイナリ形式シリアル化および逆シリアル化ます。

名前空間: System.Runtime.Serialization.Formatters.Binary
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<ComVisibleAttribute(True)> _
Public NotInheritable Class
 BinaryFormatter
    Implements IRemotingFormatter, IFormatter
Dim instance As BinaryFormatter
[ComVisibleAttribute(true)] 
public sealed class BinaryFormatter : IRemotingFormatter,
 IFormatter
[ComVisibleAttribute(true)] 
public ref class BinaryFormatter sealed : IRemotingFormatter,
 IFormatter
/** @attribute ComVisibleAttribute(true) */ 
public final class BinaryFormatter implements
 IRemotingFormatter, IFormatter
ComVisibleAttribute(true) 
public final class BinaryFormatter implements
 IRemotingFormatter, IFormatter
解説解説

SoapFormatter クラスおよび BinaryFormatter クラスは、IRemotingFormatter インターフェイス実装してリモート プロシージャ コール (RPC: Remote Procedure Call) をサポートし、IFormatter インターフェイス (IRemotingFormatter によって継承される) を実装してオブジェクト グラフシリアル化サポートしてます。SoapFormatter クラスは ISoapMessage オブジェクト使用した RPCサポートしますが、この場合IRemotingFormatter 機能使用しません。

IRemotingFormatter インターフェイスでは、RPC 時にシリアル化するオブジェクトグラフと、リモート関数呼び出しに関する情報 (トランザクション IDメソッド シグネチャなど) を伝達するヘッダー オブジェクト配列格納する追加グラフという、2 つ別個のグラフ指定できます

BinaryFormatter使用する RPC は、メソッド呼び出し応答という 2 つ部分区別されます。呼び出しは、呼び出し先のメソッド保持しているリモート オブジェクト情報と共にサーバー送信され応答は、呼び出されメソッドからのステータス情報応答情報と共にサーバーからクライアント送信されます。

メソッド呼び出しシリアル化時にはオブジェクト グラフ最初オブジェクトが IMethodCallMessage インターフェイスサポートしている必要がありますメソッド呼び出しを逆シリアル化するには、HeaderHandler パラメータ指定して Deserialize メソッド使用しますリモート処理インフラストラクチャは、HeaderHandler デリゲート使用して、ISerializable インターフェイスサポートするオブジェクト生成しますBinaryFormatterHeaderHandler デリゲート呼び出すと、呼び出し中のメソッド保持しているリモート オブジェクトURI返されます。返されグラフ内の最初オブジェクトは、IMethodCallMessage インターフェイスサポートしてます。

メソッド応答対すシリアル化プロシージャは、オブジェクト グラフ最初オブジェクトが IMethodReturnMessage インターフェイスサポートする必要があることを除けばメソッド呼び出し対すシリアル化プロシージャと同じです。メソッド応答を逆シリアル化するには、DeserializeMethodResponse メソッド使用します時間短縮するため、メソッド呼び出し時には呼び出しオブジェクトに関する詳細情報リモート オブジェクト送信されません。これらの情報は、代わりにメソッドの元の呼び出しから取得されIMethodCallMessage パラメータDeserializeMethodResponse メソッド渡されます。DeserializeMethodResponse メソッドによって返されグラフ内の最初オブジェクトは、IMethodReturnMessage インターフェイスサポートしてます。

になっていないサロゲート

になっていないサロゲート文字は、バイナリ シリアル化失われます。たとえば、次の文字列には、2 つTest という単語の間に、上位サロゲートUnicode 文字 (\ud800) が含まれています。

Test\ud800Test

シリアル化前のこの文字列バイト配列次のとおりです。

バイト配列

文字

84

T

101

e

115

s

116

t

55296

\ud800

84

T

101

e

115

s

116

t

シリアル化後には、上位サロゲートUnicode 文字次のように失われます。

バイト配列

文字

84

T

101

e

115

s

116

t

84

T

101

e

115

s

116

t

使用例使用例
Imports System.IO
Imports System.Collections
Imports System.Runtime.Serialization.Formatters.Binary
Imports System.Runtime.Serialization


Module App

    Sub Main()
        Serialize()
        Deserialize()
    End Sub

    Sub Serialize()

        ' Create a hashtable of values that will eventually be serialized.
        Dim addresses As New
 Hashtable
        addresses.Add("Jeff", "123
 Main Street, Redmond, WA 98052")
        addresses.Add("Fred", "987
 Pine Road, Phila., PA 19116")
        addresses.Add("Mary", "PO
 Box 112233, Palo Alto, CA 94301")

        ' To serialize the hashtable (and its key/value pairs),  
        ' you must first open a stream for writing. 
        ' In this case, use a file stream.
        Dim fs As New FileStream("DataFile.dat",
 FileMode.Create)

        ' Construct a BinaryFormatter and use it to serialize the data
 to the stream.
        Dim formatter As New
 BinaryFormatter
        Try
            formatter.Serialize(fs, addresses)
        Catch e As SerializationException
            Console.WriteLine("Failed to serialize. Reason: "
 & e.Message)
            Throw
        Finally
            fs.Close()
        End Try
    End Sub



    Sub Deserialize()
        ' Declare the hashtable reference.
        Dim addresses As Hashtable = Nothing

        ' Open the file containing the data that you want to deserialize.
        Dim fs As New FileStream("DataFile.dat",
 FileMode.Open)
        Try
            Dim formatter As New
 BinaryFormatter

            ' Deserialize the hashtable from the file and 
            ' assign the reference to the local variable.
            addresses = DirectCast(formatter.Deserialize(fs),
 Hashtable)
        Catch e As SerializationException
            Console.WriteLine("Failed to deserialize. Reason:
 " & e.Message)
            Throw
        Finally
            fs.Close()
        End Try

        ' To prove that the table deserialized correctly, 
        ' display the key/value pairs.
        Dim de As DictionaryEntry
        For Each de In addresses
            Console.WriteLine("{0} lives at {1}.",
 de.Key, de.Value)
        Next
    End Sub
End Module
using System;
using System.IO;
using System.Collections;
using System.Runtime.Serialization.Formatters.Binary;
using System.Runtime.Serialization;

public class App 
{
    [STAThread]
    static void Main() 
    {
        Serialize();
        Deserialize();
    }

    static void Serialize() 
    {
        // Create a hashtable of values that will eventually be serialized.
        Hashtable addresses = new Hashtable();
        addresses.Add("Jeff", "123 Main Street, Redmond, WA 98052");
        addresses.Add("Fred", "987 Pine Road, Phila., PA 19116");
        addresses.Add("Mary", "PO Box 112233, Palo Alto, CA 94301");

        // To serialize the hashtable and its key/value pairs,  
        // you must first open a stream for writing. 
        // In this case, use a file stream.
        FileStream fs = new FileStream("DataFile.dat",
 FileMode.Create);

        // Construct a BinaryFormatter and use it to serialize the data
 to the stream.
        BinaryFormatter formatter = new BinaryFormatter();
        try 
        {
            formatter.Serialize(fs, addresses);
        }
        catch (SerializationException e) 
        {
            Console.WriteLine("Failed to serialize. Reason: " + e.Message);
            throw;
        }
        finally 
        {
            fs.Close();
        }
    }

   
    static void Deserialize() 
    {
        // Declare the hashtable reference.
        Hashtable addresses  = null;

        // Open the file containing the data that you want to deserialize.
        FileStream fs = new FileStream("DataFile.dat",
 FileMode.Open);
        try 
        {
            BinaryFormatter formatter = new BinaryFormatter();

            // Deserialize the hashtable from the file and 
            // assign the reference to the local variable.
            addresses = (Hashtable) formatter.Deserialize(fs);
        }
        catch (SerializationException e) 
        {
            Console.WriteLine("Failed to deserialize. Reason: " + e.Message);
            throw;
        }
        finally 
        {
            fs.Close();
        }

        // To prove that the table deserialized correctly, 
        // display the key/value pairs.
        foreach (DictionaryEntry de in addresses)
 
        {
            Console.WriteLine("{0} lives at {1}.", de.Key, de.Value);
        }
    }
}
using namespace System;
using namespace System::IO;
using namespace System::Collections;
using namespace System::Runtime::Serialization::Formatters::Binary;
using namespace System::Runtime::Serialization;
ref class App
{
public:
   static void Serialize()
   {
      
      // Create a hashtable of values that will eventually be serialized.
      Hashtable^ addresses = gcnew Hashtable;
      addresses->Add( "Jeff", "123 Main Street, Redmond, WA 98052"
 );
      addresses->Add( "Fred", "987 Pine Road, Phila., PA 19116"
 );
      addresses->Add( "Mary", "PO Box 112233, Palo Alto, CA 94301"
 );
      
      // To serialize the hashtable (and its keys/values),  
      // you must first open a stream for writing. 
      // In this case we will use a file stream.
      FileStream^ fs = gcnew FileStream( "DataFile.dat",FileMode::Create
 );
      
      // Construct a BinaryFormatter and use it to serialize the data
 to the stream.
      BinaryFormatter^ formatter = gcnew BinaryFormatter;
      try
      {
         formatter->Serialize( fs, addresses );
      }
      catch ( SerializationException^ e ) 
      {
         Console::WriteLine( "Failed to serialize. Reason: {0}", e->Message
 );
         throw;
      }
      finally
      {
         fs->Close();
      }

   }

   static void Deserialize()
   {
      
      // Declare the hashtable reference.
      Hashtable^ addresses = nullptr;
      
      // Open the file containing the data that we want to deserialize.
      FileStream^ fs = gcnew FileStream( "DataFile.dat",FileMode::Open
 );
      try
      {
         BinaryFormatter^ formatter = gcnew BinaryFormatter;
         
         // Deserialize the hashtable from the file and 
         // assign the reference to our local variable.
         addresses = dynamic_cast<Hashtable^>(formatter->Deserialize( fs
 ));
      }
      catch ( SerializationException^ e ) 
      {
         Console::WriteLine( "Failed to deserialize. Reason: {0}", e->Message
 );
         throw;
      }
      finally
      {
         fs->Close();
      }

      
      // To prove that the table deserialized correctly, display the
 keys/values.
      IEnumerator^ myEnum = addresses->GetEnumerator();
      while ( myEnum->MoveNext() )
      {
         DictionaryEntry ^ de = safe_cast<DictionaryEntry ^>(myEnum->Current);
         Console::WriteLine( " {0} lives at {1}.", de->Key, de->Value
 );
      }
   }

};


[STAThread]
int main()
{
   App::Serialize();
   App::Deserialize();
   return 0;
}

import System.*;
import System.IO.*;
import System.Collections.*;
import System.Runtime.Serialization.Formatters.Binary.*;
import System.Runtime.Serialization.*;

public class App
{
    /** @attribute STAThread()
     */
    public static void main(String[]
 args) throws SerializationException
    {
        Serialize();
        Deserialize();
    } //main

    static void Serialize() throws SerializationException
    {
        // Create a hashtable of values that will eventually be serialized.
        Hashtable addresses = new Hashtable();

        addresses.Add("Jeff", "123 Main Street, Redmond, WA 98052");
        addresses.Add("Fred", "987 Pine Road, Phila., PA 19116");
        addresses.Add("Mary", "PO Box 112233, Palo Alto, CA 94301");

        // To serialize the hashtable and its key/value pairs,  
        // you must first open a stream for writing. 
        // In this case, use a file stream.
        FileStream fs = new FileStream("DataFile.dat",
 FileMode.Create);

        // Construct a BinaryFormatter and use it to serialize the data
 to the 
        // stream.
        BinaryFormatter formatter = new BinaryFormatter();

        try {
            formatter.Serialize(fs, addresses);
        }
        catch (SerializationException e) {
            Console.WriteLine("Failed to serialize. Reason: " 
                + e.get_Message());
            throw e;
        }
        finally {
            fs.Close();
        }
    } //Serialize

    static void Deserialize() throws SerializationException
    {
        // Declare the hashtable reference.
        Hashtable addresses = null;

        // Open the file containing the data that you want to deserialize.
        FileStream fs = new FileStream("DataFile.dat",
 FileMode.Open);

        try {
            BinaryFormatter formatter = new BinaryFormatter();

            // Deserialize the hashtable from the file and 
            // assign the reference to the local variable.
            addresses = (Hashtable)(formatter.Deserialize(fs));
        }
        catch (SerializationException e) {
            Console.WriteLine("Failed to deserialize. Reason: " 
                + e.get_Message());
            throw e;
        }
        finally {
            fs.Close();
        }

        // To prove that the table deserialized correctly, 
        // display the key/value pairs.
        IEnumerator objEnum = addresses.GetEnumerator();
        while (objEnum.MoveNext()) {
            DictionaryEntry de = (DictionaryEntry)objEnum.get_Current();        
            Console.WriteLine("{0} lives at {1}.", de.get_Key(), 
                de.get_Value());
        }
    } //Deserialize
} //App
継承階層継承階層
System.Object
  System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
BinaryFormatter メンバ
System.Runtime.Serialization.Formatters.Binary 名前空間



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「BinaryFormatter クラス」の関連用語

BinaryFormatter クラスのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



BinaryFormatter クラスのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS