Creating a random file : Binary File Write « File Directory « VB.Net






Creating a random file

 
Imports System.IO
Imports System.Collections
Imports System.Windows.Forms
Imports System.Runtime.Serialization.Formatters.Binary
Imports System.Runtime.Serialization

Public Class MainClass

   Public Shared Sub Main()
      Const NUMBER_OF_RECORDS As Integer = 100

      ' record for writing to disk
      Dim blankRecord As Employee = New Employee("f","l")

      Dim fileOutput As FileStream

      Dim binaryOutput As BinaryWriter

      Dim fileName As String = "test.dat"
      Dim i As Integer

         Try

            fileOutput = New FileStream(fileName,FileMode.Create, FileAccess.Write)

            fileOutput.SetLength(Employee.SIZE * NUMBER_OF_RECORDS)

            binaryOutput = New BinaryWriter(fileOutput)

            For i = 0 To NUMBER_OF_RECORDS - 1
               fileOutput.Position = i * Employee.SIZE
               binaryOutput.Write(blankRecord.firstName)
               binaryOutput.Write(blankRecord.lastName)
            Next
            Console.WriteLine("File Created")
         Catch fileException As IOException
            Console.WriteLine("Cannot write to file")

         End Try


      ' close FileStream
      If (fileOutput Is Nothing) <> False Then
         fileOutput.Close()
      End If

      ' close BinaryWriter
      If (binaryOutput Is Nothing) <> False Then
         binaryOutput.Close()
      End If

   End Sub

End Class

<Serializable()> Public Class Employee
   Public firstName, lastName As String
   Shared Public SIZE As Integer = 200 
   Public Sub New(ByVal first As String, ByVal last As String)
      firstName = first
      lastName = last
   End Sub 

   Public Overrides Function ToString() As String
      Return firstName & " " & lastName
   End Function 

End Class 

           
         
  








Related examples in the same category

1.Use BinaryWriter to store information into a binary file
2.Save Structure to a Binary File
3.Gets the underlying stream of the BinaryWriter.
4.BinaryWriter.Seek Method Sets the position within the current stream.
5.BinaryWriter.Write Method Writes an unsigned byte to the current stream and advances the stream position by one byte.
6.BinaryWriter.Write(Byte[]) Writes a byte array to the underlying stream.
7.Writes a region of a byte array to the current stream.
8.Writes a Unicode character
9.Writes a character array
10.Writes a section of a character array
11.Writes a length-prefixed string