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

EndOfStreamException クラス

ストリーム末尾越えて読み込もうとしたときにスローされる例外

名前空間: System.IO
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<SerializableAttribute> _
<ComVisibleAttribute(True)> _
Public Class EndOfStreamException
    Inherits IOException
Dim instance As EndOfStreamException
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
public class EndOfStreamException : IOException
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
public ref class EndOfStreamException : public
 IOException
/** @attribute SerializableAttribute() */ 
/** @attribute ComVisibleAttribute(true) */ 
public class EndOfStreamException extends IOException
SerializableAttribute 
ComVisibleAttribute(true) 
public class EndOfStreamException extends
 IOException
解説解説

EndOfStreamException は、値 0x80070026 の HRESULT COR_E_ENDOFSTREAM を使用します

使用例使用例

MemoryStream クラス上で BinaryReader クラスと BinaryWriter クラス使用しメモリに対して Double データ読み取りと書き込み実行する方法次のコード例示します

Imports System
Imports System.IO

Public Class BinaryRW

    Shared Sub Main()
    
        Dim i As Integer
        Const upperBound As Integer
 = 1000

        ' Create random data to write to the stream.
        Dim dataArray(upperBound) As Double
        Dim randomGenerator As New
 Random()
        For i = 0 To upperBound
            dataArray(i) = 100.1 * randomGenerator.NextDouble()
        Next i

        Dim binWriter As New
 BinaryWriter(New MemoryStream())
        Try

            ' Write data to the stream.
            Console.WriteLine("Writing data to the stream.")
            
            For i = 0 To upperBound
                binWriter.Write(dataArray(i))
            Next i

            ' Create a reader using the stream from the writer.
            Dim binReader As New
 BinaryReader(binWriter.BaseStream)

            ' Return to the beginning of the stream.
            binReader.BaseStream.Position = 0

            ' Read and verify the data.
            Try
                Console.WriteLine("Verifying the written data.")
                For i = 0 To upperBound
                    If binReader.ReadDouble() <> dataArray(i)
 Then
                        Console.WriteLine("Error writing data.")
                        Exit For
                    End If
                Next i
                Console.WriteLine("The data was written and verified.")
            Catch ex As EndOfStreamException
                Console.WriteLine("Error writing data: {0}.",
 _
                    ex.GetType().Name)
            End Try
        Finally
            binWriter.Close()
        End Try

    End Sub
End Class
using System;
using System.IO;

class BinaryRW
{
    static void Main()
    {
        int i;
        const int arrayLength = 1000;

        // Create random data to write to the stream.
        Random randomGenerator = new Random();
        double[] dataArray = new double[arrayLength];
        for(i = 0; i < arrayLength; i++)
        {
            dataArray[i] = 100.1 * randomGenerator.NextDouble();
        }

        using(BinaryWriter binWriter = 
            new BinaryWriter(new MemoryStream()))
        {
            // Write the data to the stream.
            Console.WriteLine("Writing data to the stream.");
            for(i = 0; i < arrayLength; i++)
            {
                binWriter.Write(dataArray[i]);
            }

            // Create a reader using the stream from the writer.
            using(BinaryReader binReader = 
                new BinaryReader(binWriter.BaseStream))
            {
                try
                {
                    // Return to the beginning of the stream.
                    binReader.BaseStream.Position = 0;

                    // Read and verify the data.
                    Console.WriteLine("Verifying the written data.");
                    for(i = 0; i < arrayLength; i++)
                    {
                        if(binReader.ReadDouble() != dataArray[i])
                        {
                            Console.WriteLine("Error writing data.");
                            break;
                        }
                    }
                    Console.WriteLine("The data was written " +
                        "and verified.");
                }
                catch(EndOfStreamException e)
                {
                    Console.WriteLine("Error writing data: {0}.",
                        e.GetType().Name);
                }
            }
        }
    }
}
using namespace System;
using namespace System::IO;
int main()
{
   int i;
   const int arrayLength = 1000;
   
   // Create random data to write to the stream.
   array<double>^dataArray = gcnew array<double>(arrayLength);
   Random^ randomGenerator = gcnew Random;
   for ( i = 0; i < arrayLength; i++ )
   {
      dataArray[ i ] = 100.1 * randomGenerator->NextDouble();

   }
   BinaryWriter^ binWriter = gcnew BinaryWriter( gcnew MemoryStream );
   try
   {
      
      // Write data to the stream.
      Console::WriteLine( "Writing data to the stream." );
      i = 0;
      for ( i = 0; i < arrayLength; i++ )
      {
         binWriter->Write( dataArray[ i ] );

      }
      
      // Create a reader using the stream from the writer.
      BinaryReader^ binReader = gcnew BinaryReader( binWriter->BaseStream );
      
      // Return to the beginning of the stream.
      binReader->BaseStream->Position = 0;
      try
      {
         
         // Read and verify the data.
         i = 0;
         Console::WriteLine( "Verifying the written data." );
         for ( i = 0; i < arrayLength; i++ )
         {
            if ( binReader->ReadDouble() != dataArray[ i ]
 )
            {
               Console::WriteLine( "Error writing data." );
               break;
            }

         }
         Console::WriteLine( "The data was written and verified." );
      }
      catch ( EndOfStreamException^ e ) 
      {
         Console::WriteLine( "Error writing data: {0}.", e->GetType()->Name
 );
      }

   }
   finally
   {
      binWriter->Close();
   }

}

import System.*;
import System.IO.*;

class BinaryRW
{   
    public static void main(String[]
 args)
    {
        int i;
        final int arrayLength = 1000;

        // Create random data to write to the stream.
        Random randomGenerator = new Random();
        double dataArray[] = new double[arrayLength];
        for(i = 0;i < arrayLength;i++) {
            dataArray[i] = 100.1*randomGenerator.NextDouble() ;
        }
        BinaryWriter binWriter = new BinaryWriter(new
 MemoryStream());
        try {
            // Write the data to the stream.
            Console.WriteLine("Writing data to the stream.");
            for(i = 0;i < arrayLength;i++)    {
                binWriter.Write(dataArray [ i]);
            }
            // Create a reader using the stream from the writer.
            BinaryReader binReader = 
                new BinaryReader(binWriter.get_BaseStream());
            try {
                try {
                    // Return to the beginning of the stream.
                    binReader.get_BaseStream().set_Position(0);

                    // Read and verify the data.
                    Console.WriteLine("Verifying the written data.");
                    for(i = 0;i < arrayLength;i++) {
                        if ( binReader.ReadDouble() != dataArray[i]
 ) {
                            Console.WriteLine("Error writing data.");
                            break;
                        }
                    } 
                    Console.WriteLine(("The data was written "
                        + "and verified."));
                }
                catch(EndOfStreamException e) {
                    Console.WriteLine("Error writing data: {0}.",
                        e.GetType().get_Name());
                }
            }
            finally {
                if (binReader != null) {
                    binReader = null;
                }
            }
        }
        finally {
            if (binWriter != null) {
                binWriter = null;
            }
        }
    } //main
} //BinaryRW
継承階層継承階層
System.Object
   System.Exception
     System.SystemException
       System.IO.IOException
        System.IO.EndOfStreamException
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からEndOfStreamException クラスを検索した結果を表示しています。
Weblioに収録されているすべての辞書からEndOfStreamException クラスを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からEndOfStreamException クラス を検索

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

辞書ショートカット

すべての辞書の索引

「EndOfStreamException クラス」の関連用語

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

   

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



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

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

©2025 GRAS Group, Inc.RSS