Click here to Skip to main content
15,886,199 members
Articles / Web Development / ASP.NET
Tip/Trick

Microsoft Excel BIFF8 Viewer

Rate me:
Please Sign up or sign in to vote.
3.25/5 (4 votes)
16 Jan 2012CPOL1 min read 55.8K   8   3
A tool for viewing Microsoft Excel BIFF8 binary format

Introduction


Microsoft Excel file format (*.xls) is named as Binary Interchange File Format (BIFF). BIFF files are divided into several types:

  • Excel 2.x (BIFF2)
  • Excel 3.0 (BIFF3)
  • Excel 4.0 (BIFF4)
  • Excel 5.0 (BIFF5)
  • Excel 7.0/95 (BIFF5)
  • Excel 8.0/97 (BIFF8)
  • Excel 9.0/2000 (BIFF8)
  • Excel 10.0/XP (BIFF8)
  • Excel 11.0/2003 (BIFF8)

This sample code is created for BIFF8, which is used by Microsoft Excel 97-2003. It is showing each block of record inside XLS file to analyze the binary file structure. Excel binary file structure documentation can be downloaded from here.


BIFF files are divided into several types including worksheet, workbook, chart, etc. In this tip, I will focus on workbook format only.


Workbook file format is divided into several parts called substream. Every substream is started with Beginning of File (BOF) record and ended with End Of File (EOF) record.


Each record in general contains:

  • ID (2 bytes)
  • Length (2 bytes)
  • Body (Size is based on Length in bytes)

BOF record ID is 0x0809 and EOF record ID is 0x000A.


Reading Excel Binary File


Basically to read BIFF files, we will need to find the BOF record first. After that, we continue reading other records until we find EOF record. Then we continue reading to find another BOF record and so on.


VB.NET
Dim fName As String = Request("fName")
Dim fStream As FileStream
Dim bReader As BinaryReader
Dim uBuffer As UInt16
Dim bFindBOF As Boolean = True
Dim bBuffer As Byte
Dim j As Integer = 0
If (String.IsNullOrEmpty(fName)) Then
  Return
End If
'Read XLS file
Try
  fStream = New FileStream(fName, FileMode.Open, FileAccess.Read)
  bReader = New BinaryReader(fStream)
  Do While j < fStream.Length - 1
    If bFindBOF = True Then
      'Get BOF Record
      Do While j < fStream.Length - 3 And bFindBOF = True
        uBuffer = bReader.ReadUInt16()
        If uBuffer = 2057 Then 'BOF = 0x0809
          bFindBOF = False
          Response.Write("ID = 0x0809 | ")
        End If
        j = j + 2
      Loop
      If bFindBOF = False Then
        'Get Record Length
        uBuffer = bReader.ReadUInt16()
        Response.Write("Length = " & uBuffer.ToString() & _
        " | Offset = " & j.ToString())
        j = j + 2
        'Get Record Body
        Response.Write(IIf(uBuffer > 0, " | Body = ", String.Empty))
        For i = 1 To uBuffer
          bBuffer = bReader.ReadByte()
          Response.Write(GetByteHex(bBuffer) & " | ")
        Next
        Response.Write("<br/>")
        j = j + uBuffer
      Else
        j = j + 2
      End If
    Else
      'Get Record ID
      uBuffer = bReader.ReadUInt16()
      If uBuffer = 10 Then 'EOF = 0x000A
        bFindBOF = True
      End If
      Response.Write("ID = " & GetUInt16Hex(uBuffer) & " | ")
      j = j + 2
      'Get Record Length
      uBuffer = bReader.ReadUInt16()
      Response.Write("Length = " & uBuffer.ToString() & _
      " | Offset = " & j.ToString())
      j = j + 2
      'Get Record Body
      Response.Write(IIf(uBuffer > 0, " | Body = ", String.Empty))
      For i = 1 To uBuffer
        bBuffer = bReader.ReadByte()
        Response.Write(GetByteHex(bBuffer) & " | ")
      Next
      Response.Write("<br/>")
      j = j + uBuffer
    End If
  Loop
  Response.Write("*ID and LENGTH take 4 bytes, " & _
  "so total bytes per record is 4 + Length.")
  bReader.Dispose()
  fStream.Close()
Catch ex As Exception
  Response.Write("xls-check::Page_Load: exception: " & _
  ex.Message & Environment.NewLine & ex.StackTrace)
End Try

First, the code above is opening the XLS file and read the first BOF record. If BOF records is found, then read the next record until EOF record is found. After that, it will try to find another BOF record and so on.


Numeric to Hexadecimal Translator


The below code block is used to translate UInt16 to Hexadecimal string.


VB.NET
Private Function GetUInt16Hex(ByVal pValue As UInt16) As String
  Dim sResult As String = "0x"
  Dim dTemp As Double = 0
  '16^3
  dTemp = Math.Floor(pValue / 4096)
  sResult = sResult & GetHexLetter(dTemp).ToString()
  pValue = pValue - (dTemp * 4096)
  '16^2
  dTemp = Math.Floor(pValue / 256)
  sResult = sResult & GetHexLetter(dTemp).ToString()
  pValue = pValue - (dTemp * 256)
  '16^1
  dTemp = Math.Floor(pValue / 16)
  sResult = sResult & GetHexLetter(dTemp).ToString()
  pValue = pValue - (dTemp * 16)
  '16^0
  sResult = sResult & GetHexLetter(pValue).ToString()
  Return sResult
End Function

The below code block is used to translate Byte to Hexadecimal string.


VB.NET
Private Function GetByteHex(ByVal pValue As UInt16) As String
  Dim sResult As String = "0x"
  Dim dTemp As Double = 0
  '16^1
  dTemp = Math.Floor(pValue / 16)
  sResult = sResult & GetHexLetter(dTemp).ToString()
  pValue = pValue - (dTemp * 16)
  '16^0
  sResult = sResult & GetHexLetter(pValue).ToString()
  Return sResult
End Function

The below code block is used to get Hexadecimal character of a numeric value.


VB.NET
Private Function GetHexLetter(ByVal pValue As Double) As String
  Dim sResult As String = String.Empty
  If pValue < 10 Then
    sResult = pValue.ToString()
  ElseIf pValue = 10 Then
    sResult = "A"
  ElseIf pValue = 11 Then
    sResult = "B"
  ElseIf pValue = 12 Then
    sResult = "C"
  ElseIf pValue = 13 Then
    sResult = "D"
  ElseIf pValue = 14 Then
    sResult = "E"
  ElseIf pValue = 15 Then
    sResult = "F"
  End If
  Return sResult
End Function

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Singapore Singapore
Robby Tendean had his Master Degree in Computer Science from National Taiwan University of Science and Technology. His master degree thesis, Energy-Efficient Routing Protocol for Wireless Sensor Networks with Static Clustering and Dynamic Structure, has been published in Springerlink International Journal.

Currently he is working as Software Engineer based in Singapore with several years experience in HTML, Javascript, JQuery, C#.NET, VB.NET, Microsoft SQL Server for web development.

Comments and Discussions

 
GeneralMy vote of 5 Pin
BruceL29-Jan-13 7:35
BruceL29-Jan-13 7:35 
GeneralReason for my vote of 1 pay for src ... gmab Pin
RedDk24-Jan-12 5:56
RedDk24-Jan-12 5:56 
GeneralReason for my vote of 2 not bad Pin
infosoftsaranya17-Jan-12 22:48
infosoftsaranya17-Jan-12 22:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.