2010-06-04 29 views
0

後續可供選擇:有一個後續的進一步詳情,請參閱Convert MBF to IEEE轉換MBF單雙符合IEEE

我有一些遺留的數據是仍然在使用,讀取二進制文件是沒有問題的,數字格式爲。所有浮點數都以MBF格式保存(單個 Double)。我找到了a topic about that on the MSDN boards,但那隻能處理單個值。我也希望儘可能遠離API調用。

有沒有人有雙打解決方案?

編輯:萬一有人需要它,這裏是VB.NET代碼(這是Option Strict兼容)我結束了(隨意將其轉換爲C#和編輯它):

''' <summary>Converts a MBF Single to an IEEE Single</summary> 
''' <param name="src">The MBF Single value</param> 
''' <returns>The converted IEEE Single value</returns> 
''' <remarks>Here can find some further information about this topic: http://en.wikipedia.org/wiki/Microsoft_Binary_Format http://support.microsoft.com/kb/140520</remarks> 
Public Shared Function MTIS(ByVal src As Single) As Single 
    Return MTIS(BitConverter.GetBytes(src), 0) 
End Function 

''' <summary>Converts a MBF Single to an IEEE Single</summary> 
''' <param name="src">The source array</param> 
''' <param name="startIndex">The start index at which the Single starts</param> 
''' <returns>The converted IEEE Single value</returns> 
''' <remarks>Here can find some further information about this topic: http://en.wikipedia.org/wiki/Microsoft_Binary_Format http://support.microsoft.com/kb/140520</remarks> 
Public Shared Function MTIS(ByVal src() As Byte, ByVal startIndex As Integer) As Single 
    Dim mbf(3) As Byte 
    Dim ieee(3) As Byte 

    Array.Copy(src, startIndex, mbf, 0, 4) 

    If mbf(3) <> 0 Then 
     Dim sign As Byte = mbf(2) And ToByte(&H80) 
     Dim exp As Byte = mbf(3) - ToByte(2) ' -1-128-127 ' 

     ieee(3) = ieee(3) Or sign 
     ieee(3) = ieee(3) Or exp >> 1 
     ieee(2) = ieee(2) Or exp << 7 
     ieee(2) = ieee(2) Or mbf(2) And ToByte(&H7F) 
     ieee(1) = mbf(1) 
     ieee(0) = mbf(0) 
    End If 

    Return BitConverter.ToSingle(ieee, 0) 
End Function 


''' <summary>Converts a MBF Double to a IEEE Double</summary> 
''' <param name="src">The MBF Double value</param> 
''' <returns>The converted IEEE Double value</returns> 
''' <remarks>Here can find some further information about this topic: http://en.wikipedia.org/wiki/Microsoft_Binary_Format http://support.microsoft.com/kb/140520</remarks> 
Public Shared Function MTID(ByVal src As Double) As Double 
    Return MTID(BitConverter.GetBytes(src), 0) 
End Function 

''' <summary>Converts a MBF Double to a IEEE Double</summary> 
''' <param name="src">The source array</param> 
''' <param name="startIndex">The start index at which the Double starts</param> 
''' <returns>The converted IEEE Double value</returns> 
''' <remarks>Here can find some further information about this topic: http://en.wikipedia.org/wiki/Microsoft_Binary_Format http://support.microsoft.com/kb/140520</remarks> 
Public Shared Function MTID(ByVal src() As Byte, ByVal startIndex As Integer) As Double 
    Dim mbf(7) As Byte 
    Dim ieee(7) As Byte 

    Array.Copy(src, startIndex, mbf, 0, 8) 

    If mbf(7) <> 0 Then 
     Dim sign As Byte = mbf(6) And ToByte(&H80) 
     Dim exp As Int16 = mbf(7) - 128S - 1S + 1023S 

     ieee(7) = ieee(7) Or sign 
     ieee(7) = ieee(7) Or ToByte(exp >> 4 And &HFF) 
     ieee(6) = ieee(6) Or ToByte(exp << 4 And &HFF) 

     For i As Integer = 6 To 1 Step -1 
      mbf(i) <<= 1 
      mbf(i) = mbf(i) Or mbf(i - 1) >> 7 
     Next 
     mbf(0) <<= 1 

     For i As Integer = 6 To 1 Step -1 
      ieee(i) = ieee(i) Or mbf(i) >> 4 
      ieee(i - 1) = ieee(i - 1) Or mbf(i) << 4 
     Next 
     ieee(0) = ieee(0) Or mbf(0) >> 4 
    End If 

    Return BitConverter.ToDouble(ieee, 0) 
End Function 

回答

1

this Wiki頁面中,有幾個不同代碼示例的鏈接,用於在C,C++和Python中執行此操作。

其中一個或多個應該很容易轉換爲適合您的某種語言。