如何覆盖txt文件中的数据?

发布于 2024-11-16 14:33:44 字数 494 浏览 3 评论 0原文

可能的重复:
可以说说为什么使用StreamWriter保存数据时仍然显示之前的数据

我有 WPF C# 应用程序,它读取和写入 .txt 文件,我知道如何写行但行,但如何覆盖文本那已经是 文件。这就是我要写入文本文件的下一行的内容,但我想越过这些行而不仅仅是写入下一行,谢谢。

using (StreamWriter newTask = new StreamWriter("test.txt", true)) 
{
    newTask.WriteLine(name[i].ToString());    
}

Possible Duplicate:
Can any one tell why the previous data is still displayed while saving data using StreamWriter

I have WPF C# application, that reads and writes to a .txt file, i know how to write line but line, but how do I overwrite the text that is already the file. This is what I have just to write to the next line of the text file, but I want to over the lines not just write to the next line, thanks.

using (StreamWriter newTask = new StreamWriter("test.txt", true)) 
{
    newTask.WriteLine(name[i].ToString());    
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦旅人picnic 2024-11-23 14:33:44

您需要将第二个参数更改为 false:

using (StreamWriter newTask = new StreamWriter("test.txt", false)){ 
        newTask.WriteLine(name[i].ToString());
}

You need to change the second parameter to false:

using (StreamWriter newTask = new StreamWriter("test.txt", false)){ 
        newTask.WriteLine(name[i].ToString());
}
别低头,皇冠会掉 2024-11-23 14:33:44

您将 true 作为 append 参数传递。

You're passing true as the append parameter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文