我是 WPF 的新手。我有 WPF 应用程序,允许用户将数据库导出为 txt 文件。数据库具有固定数量的列,但行数不受限制。我的问题如下:
我需要导入多个 txt 文件,并且需要将它们添加到另一个之下。
导入所有文件后,我需要对导入的数据进行查询(sql)。
我已经使用了这段代码,它导入了一个 txt 文件(但应该更多),但我无法搜索数据..
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) '创建 OpenFileDialog Dim dlg As Microsoft.Win32.OpenFileDialog = New Microsoft.Win32.OpenFileDialog()
' Set filter for file extension and default file extension
dlg.DefaultExt = ".txt"
dlg.Filter = "Text documents (.txt)|*.txt"
' Display OpenFileDialog by calling ShowDialog method
If (dlg.ShowDialog() = True) Then
'; Open document
Dim filename As String = dlg.FileName
FileNameTextBox.Text = filename
Dim paragraph As Paragraph = New Paragraph()
paragraph.Inlines.Add(System.IO.File.ReadAllText(filename))
Dim document As FlowDocument = New FlowDocument(paragraph)
FlowDocReader.Document = document
End If
End Sub
谢谢 :)