如何使用 vb.net 将文本框值写入 .txt 文件
我有一个带有两个文本框的简单表单,我希望 Textbox1
写入名为 C:\VALUE1.txt
的文件,并 Textbox2
写入其值到名为 C:\VALUE2.txt
的文件中
文本文件中已有的任何文本都必须被覆盖。
I have a simple form with two textboxes, I want Textbox1
to write to a file named C:\VALUE1.txt
and Textbox2
to write its value to a file named C:\VALUE2.txt
Any text that is already in the text file MUST be over written.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
熟悉这两种方法是值得的:
1) 在 VB.Net 中,您有快速且简单的 My.Computer.FileSystem.WriteAllText 选项:
2) 或者您可以走“长”路并使用 StreamWriter 对象。按如下方式创建一个 - 在构造函数中设置 false 告诉它您不想附加:
然后将文本写入文件,如下所示:
It's worth being familiar with both methods:
1) In VB.Net you have the quick and easy My.Computer.FileSystem.WriteAllText option:
2) Or else you can go the "long" way round and use the StreamWriter object. Create one as follows - set false in the constructor tells it you don't want to append:
then write text to the file as follows:
查看 System.IO 和 System.Text 命名空间,特别是 StreamWriter 对象。
Have a look at the
System.IO
andSystem.Text
namespaces, in particular theStreamWriter
object.