Postupy: Čtení a zápis do nově vytvořeného datového souboru

System.IO.BinaryReader Třídy se používají k zápisu System.IO.BinaryWriter a čtení dat kromě řetězců znaků. Následující příklad ukazuje, jak vytvořit prázdný datový proud souboru, zapisovat do něj data a číst z něj data.

Příklad vytvoří datový soubor s názvem Test.data v aktuálním adresáři, vytvoří přidružené BinaryWriter a BinaryReader objekty a použije BinaryWriter objekt k zápisu celých čísel 0 až 10 do Test.data, což ponechá ukazatel souboru na konci souboru. Objekt BinaryReader pak nastaví ukazatel souboru zpět na původ a přečte zadaný obsah.

Poznámka:

Pokud test.data již v aktuálním adresáři existují, IOException vyvolá se výjimka. Místo toho, abyste vždy vytvořili nový soubor bez vyvolání výjimky, použijte možnost FileMode.CreateFileMode.CreateNew režim souboru.

Příklad

using System;
using System.IO;

class MyStream
{
    private const string FILE_NAME = "Test.data";

    public static void Main()
    {
        if (File.Exists(FILE_NAME))
        {
            Console.WriteLine($"{FILE_NAME} already exists!");
            return;
        }

        using (FileStream fs = new FileStream(FILE_NAME, FileMode.CreateNew))
        {
            using (BinaryWriter w = new BinaryWriter(fs))
            {
                for (int i = 0; i < 11; i++)
                {
                    w.Write(i);
                }
            }
        }

        using (FileStream fs = new FileStream(FILE_NAME, FileMode.Open, FileAccess.Read))
        {
            using (BinaryReader r = new BinaryReader(fs))
            {
                for (int i = 0; i < 11; i++)
                {
                    Console.WriteLine(r.ReadInt32());
                }
            }
        }
    }
}


// The example creates a file named "Test.data" and writes the integers 0 through 10 to it in binary format.
// It then writes the contents of Test.data to the console with each integer on a separate line.
Imports System.IO

Class MyStream
    Private Const FILE_NAME As String = "Test.data"

    Public Shared Sub Main()
        If File.Exists(FILE_NAME) Then
            Console.WriteLine($"{FILE_NAME} already exists!")
            Return
        End If

        Using fs As New FileStream(FILE_NAME, FileMode.CreateNew)
            Using w As New BinaryWriter(fs)
                For i As Integer = 0 To 10
                    w.Write(i)
                Next
            End Using
        End Using

        Using fs As New FileStream(FILE_NAME, FileMode.Open, FileAccess.Read)
            Using r As New BinaryReader(fs)
                For i As Integer = 0 To 10
                    Console.WriteLine(r.ReadInt32())
                Next
            End Using
        End Using
    End Sub
End Class

' The example creates a file named "Test.data" and writes the integers 0 through 10 to it in binary format.
' It then writes the contents of Test.data to the console with each integer on a separate line.

Viz také