gpt4 book ai didi

vb.net - 在 VB.NET 中写入和读取 .ini 文件

转载 作者:行者123 更新时间:2023-12-04 04:54:29 26 4
gpt4 key购买 nike

假设我有一个 Button,例如,当单击它时,会将文本(“测试文本”)输出到目录 (C:/configdir) 中的 .ini 文件。我将如何创建这个 .ini 文件?

然后我有另一个按钮,当单击它时,将显示我刚刚创建的 .ini 的内容(“测试文本”)。我猜我需要流式写入文本。

最佳答案

这是有用的东西。

Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
Using sw As New System.IO.StreamWriter("c:\myfile.ini", False)
sw.WriteLine("test text")
End Using

Using sr As New System.IO.StreamReader("c:\myfile.ini")
Dim Line As String = sr.ReadLine
Do While Line IsNot Nothing
MsgBox(Line)
Loop
End Using
End Sub

关于vb.net - 在 VB.NET 中写入和读取 .ini 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16948234/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com