如何:在 Visual Basic 中從固定寬度的文字檔讀取
TextFieldParser
物件可讓您輕鬆有效率地剖析結構化文字檔,例如記錄檔。
TextFieldType
屬性會定義所剖析的檔案是有分隔符號的檔案,還是具有固定寬度文字欄位的檔案。 在固定寬度的文字檔中,結尾欄位可以有可變寬度。 若要指定結尾欄位是否有可變寬度,請將其寬度定義為小於或等於零。
剖析固定寬度的文字檔
建立新的
TextFieldParser
。 下列程式碼會建立名為Reader
的TextFieldParser
,並開啟檔案test.log
。Using Reader As New Microsoft.VisualBasic. FileIO.TextFieldParser("C:\TestFolder\test.log")
將
TextFieldType
屬性定義為FixedWidth
,並定義寬度和格式。 下列程式碼會定義文字的資料行:第一個資料行為 5 個字元寬、第二個資料行為 10 個字元寬、第三個資料行為 11 個字元寬,而第四個資料行的寬度是可變動的。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
關閉While
和Using
區塊。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
穩固程式設計
以下條件可能會造成例外狀況:
無法使用指定格式剖析資料列 (MalformedLineException)。 例外狀況訊息指出造成例外狀況的文字行,而 ErrorLine 屬性被指派至包含於該文字行中的文字。
指定的檔案不存在 (FileNotFoundException)。
發生使用者權限不足而無法存取檔案的部分信任狀況 (SecurityException)。
路徑太長 (PathTooLongException)。
使用者沒有足夠權限以存取檔案 (UnauthorizedAccessException)。