CSVファイルを読み取ってデータテーブルを作成する機能があります。私はそれが私自身のcozであるとは主張しません。どこで手に入れたのかは覚えていませんが、いくつかの異なるソースからの組み合わせです。
値に「、」コンマが含まれるCSVを処理する必要があるまで、関数は正常に機能します。誰かがこの問題を処理するためにこれを解決するのを手伝ってもらえますか?
どうもありがとう ..
サンプルCSVファイル
FirstName, LastName, Comment, "address, just city",
John, Smith, "you are very good, but ugly", London,
Britney, Spear, "I am a singer, and beautiful", New York,
私の機能
Public Function BuildDataTable() As DataTable
Dim myTable As DataTable = New DataTable("MyTable")
Dim i As Integer
Dim myRow As DataRow
Dim fieldValues As String()
Dim myReader As IO.StreamReader
Dim csv2xml As New csv2xml
Try
'Open file and read first line to determine how many fields there are.
myReader = File.OpenText(_fileFullPath)
fieldValues = myReader.ReadLine().Split(_seperator)
'Create data columns accordingly
If _hasheader = False Then
For i = 0 To fieldValues.Length() - 1
myTable.Columns.Add(New DataColumn("Column(" & i & ")"))
Next
Else
'if the file has header, take the first row as header for datatable
For i = 0 To fieldValues.Length() - 1
myTable.Columns.Add(New DataColumn(fieldValues(i).Replace(" ", "")))
Next
End If
'Adding the first line of data to data table
myRow = myTable.NewRow
'if the csv file has not got a column header. defined by radio button list on first page by user
'if csv file has header, then not need to read the first line
If _hasheader = False Then
For i = 0 To fieldValues.Length() - 1
myRow.Item(i) = fieldValues(i).ToString
Next
myTable.Rows.Add(myRow)
End If
'Now reading the rest of the data to data table
While myReader.Peek() <> -1
fieldValues = myReader.ReadLine().Split(_seperator)
myRow = myTable.NewRow
For i = 0 To fieldValues.Length() - 1
myRow.Item(i) = fieldValues(i).Trim.ToString
Next
'check if there are empty rows in csv, ignore empty rows
If Not csv2xml.AreAllColumnsEmpty(myRow) = True Then
myTable.Rows.Add(myRow)
End If
End While
Catch ex As Exception
'MsgBox("Error building datatable: " & ex.Message)
Dim oError As ErrorLog = New ErrorLog
oError.LogError(_strWebsiteName, _
loginID, _
ex.Source.ToString, _
ex.Message.ToString, _
, _
ex.StackTrace.ToString)
oError = Nothing
Return New DataTable("Empty")
'Server.Transfer(CustomErrorPage)
Finally
csv2xml = Nothing
myRow = Nothing
End Try
myReader.Close()
Return myTable
End Function