如何:在 Visual Basic 中從逗號分隔文字檔讀取
TextFieldParser
物件可讓您輕鬆有效率地剖析結構化文字檔,例如記錄檔。 TextFieldType
屬性會定義檔案是有分隔符號的檔案,還是具有固定寬度文字欄位的檔案。
剖析逗號分隔文字檔
建立新的
TextFieldParser
。 下列程式碼會建立名為MyReader
的TextFieldParser
,並開啟檔案test.txt
。Using MyReader As New Microsoft.VisualBasic. FileIO.TextFieldParser( "C:\TestFolder\test.txt")
定義
TextField
類型和分隔符號。 下列程式碼會將TextFieldType
屬性定義為Delimited
,並將分隔符號定義為 ","。MyReader.TextFieldType = FileIO.FieldType.Delimited MyReader.SetDelimiters(",")
在檔案的欄位之間執行迴圈。 如果有任何一行損毀,即會報告錯誤並繼續剖析。 下列程式碼會在檔案之間執行迴圈,依序顯示每個欄位,並報告所有格式不正確的欄位。
Dim currentRow As String() While Not MyReader.EndOfData Try currentRow = MyReader.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.txt
讀取。
Using MyReader As New Microsoft.VisualBasic.
FileIO.TextFieldParser(
"C:\TestFolder\test.txt")
MyReader.TextFieldType = FileIO.FieldType.Delimited
MyReader.SetDelimiters(",")
Dim currentRow As String()
While Not MyReader.EndOfData
Try
currentRow = MyReader.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)。