将文本框的内容保存到文件
我正在开发一个具有文本框的应用程序。我想将其内容写入文件,但我该怎么做呢?
I'm developing an application that has a TextBox. I want to write its contents to a file, but how can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
有很多方法可以实现此目的,最简单的是:
请务必查看 MSDN 页面中的
File.CreateText
和StreamWriter.Write
。如果您的目标不是 .NET Compact Framework,正如您的标签所示,您可以做得更简单:
There are many ways to accomplish this, the simplest being:
Be sure to look at the MSDN page for
File.CreateText
andStreamWriter.Write
.If you weren't targeting the .NET Compact Framework, as your tags suggest, you could do even simpler:
如果您被 BCL 的某些脑死亡版本所困扰,那么您可以自己编写该函数:
If you're stuck on some brain-dead version of the BCL, then you can write that function yourself:
试试这个:
当然,添加异常处理等。
Try this:
Of course, add exception handling etc.
对于 richTextBox,您可以为此添加一个“保存”按钮。还从工具箱添加一个 saveFileDialog 控件,然后在按钮的单击事件中添加以下代码。
For a richTextBox, you can add a "Save" button for this purpose. Also add a saveFileDialog control from Toolbox, then add following code in button's click event.