방법: Visual Basic에서 쉼표로 구분된 텍스트 파일 읽기
업데이트: 2007년 11월
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
While 및 Using 블록을 End While 및 End Using으로 닫습니다.
End While End Using
예제
이 예제에서는 test.txt 파일을 읽습니다.
Using MyReader As New _
Microsoft.VisualBasic.FileIO.TextFieldParser("C:\testfile.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). 예외 메시지에 외의 원인이 된 줄이 표시되고 줄에 포함된 텍스트에 TextFieldParser.ErrorLine 속성이 할당됩니다.
지정된 파일이 없는 경우(FileNotFoundException)
사용자에게 파일에 액세스할 수 있는 충분한 권한이 없는 부분 신뢰 상황인 경우(SecurityException)
경로가 너무 긴 경우(PathTooLongException)
파일에 액세스할 수 있는 충분한 권한이 사용자에게 없는 경우(UnauthorizedAccessException)
참고 항목
작업
방법: Visual Basic에서 고정 너비 텍스트 파일 읽기
방법: Visual Basic에서 여러 형식의 텍스트 파일 읽기
연습: Visual Basic에서 파일과 디렉터리 조작
예외 문제 해결: Microsoft.VisualBasic.FileIO.TextFieldParser.MalformedLineException
개념
TextFieldParser 개체를 사용하여 텍스트 파일 구문 분석