VB.NET 使用 StreamWriter保存到txt
时间: 2024-02-04 19:03:43 浏览: 86
VB打开与保存txt文件的方法
在VB.NET中,可以使用 `StreamWriter` 类来保存文本到txt文件中。以下是使用 `StreamWriter` 类保存文本的示例代码:
```vb
Dim filePath As String = "C:\path\to\file.txt"
Dim content As String = "Hello, world!"
Using writer As New StreamWriter(filePath)
writer.WriteLine(content)
End Using
```
上述代码创建了一个 `StreamWriter` 对象,并将其用于写入文本文件。使用 `Using` 语句可以确保在完成操作后正确地关闭和释放资源。
在代码中,首先指定要保存的文件路径(`filePath`),然后将要保存的内容(`content`)赋值给 `StreamWriter` 对象的 `WriteLine` 方法。通过调用 `WriteLine` 方法,文本将被写入文件的一行。
最后,使用 `Using` 语句来自动关闭和释放 `StreamWriter` 对象,确保资源的正确释放。
这样就可以使用 `StreamWriter` 类在VB.NET中保存文本到txt文件中。
阅读全文