共用方式為


如何:在 Visual Basic 中從固定寬度的文字檔讀取

TextFieldParser 物件可讓您輕鬆有效率地剖析結構化文字檔,例如記錄檔。

TextFieldType 屬性會定義所剖析的檔案是有分隔符號的檔案,還是具有固定寬度文字欄位的檔案。 在固定寬度的文字檔中,結尾欄位可以有可變寬度。 若要指定結尾欄位是否有可變寬度,請將其寬度定義為小於或等於零。

剖析固定寬度的文字檔

  1. 建立新的 TextFieldParser。 下列程式碼會建立名為 ReaderTextFieldParser,並開啟檔案 test.log

    Using Reader As New Microsoft.VisualBasic.
        FileIO.TextFieldParser("C:\TestFolder\test.log")
    
  2. TextFieldType 屬性定義為 FixedWidth,並定義寬度和格式。 下列程式碼會定義文字的資料行:第一個資料行為 5 個字元寬、第二個資料行為 10 個字元寬、第三個資料行為 11 個字元寬,而第四個資料行的寬度是可變動的。

    Reader.TextFieldType =
    Microsoft.VisualBasic.FileIO.FieldType.FixedWidth
    Reader.SetFieldWidths(5, 10, 11, -1)
    
  3. 在檔案的欄位之間執行迴圈。 如果有任何一行損毀,即會報告錯誤並繼續剖析。

    Dim currentRow As String()
    While Not Reader.EndOfData
        Try
            currentRow = Reader.ReadFields()
            Dim currentField As String
            For Each currentField In currentRow
                MsgBox(currentField)
            Next
        Catch ex As Microsoft.VisualBasic.
                    FileIO.MalformedLineException
            MsgBox("Line " & ex.Message &
            "is not valid and will be skipped.")
        End Try
    
  4. 使用 End WhileEnd Using 關閉 WhileUsing 區塊。

        End While
    End Using
    

範例

此範例會從檔案 test.log 讀取。

Using Reader As New Microsoft.VisualBasic.FileIO.
   TextFieldParser("C:\TestFolder\test.log")

    Reader.TextFieldType =
       Microsoft.VisualBasic.FileIO.FieldType.FixedWidth
    Reader.SetFieldWidths(5, 10, 11, -1)
    Dim currentRow As String()
    While Not Reader.EndOfData
        Try
            currentRow = Reader.ReadFields()
            Dim currentField As String
            For Each currentField In currentRow
                MsgBox(currentField)
            Next
        Catch ex As Microsoft.VisualBasic.FileIO.MalformedLineException
            MsgBox("Line " & ex.Message &
            "is not valid and will be skipped.")
        End Try
    End While
End Using

穩固程式設計

以下條件可能會造成例外狀況:

另請參閱