如何使用c#复制文本框中的文本文件?

发布于 2024-10-02 11:47:54 字数 33 浏览 5 评论 0原文

我喜欢将整个文本文件复制到多行文本框中,我该怎么做?

i like to copy the whole textfile into multiline textbox ,how can i do these?

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

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

发布评论

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

评论(6

清君侧 2024-10-09 11:47:55
 textBox1.Text = System.IO.File.ReadAllText(path);
 textBox1.Text = System.IO.File.ReadAllText(path);
野味少女 2024-10-09 11:47:55

使用 ReadAllLines 方法将文件作为字符串数组读取,并将其放入文本框中:

TheTextBox.Lines = File.ReadAllLines(fileName);

Use the ReadAllLines method to read the file as an array of strings, and put that in the textbox:

TheTextBox.Lines = File.ReadAllLines(fileName);
亢潮 2024-10-09 11:47:55

使用System.IO命名空间中的类(例如File)。

    using (FileStream fileStream = File.OpenRead("C:\your_file.txt"))
    using (StreamReader streamReader = new StreamReader(fileStream))
    {
        string fileContent = streamReader.ReadToEnd();

        myTextBox.Text = fileContent;
    }

Use classes from System.IO namespace (e.g. File).

    using (FileStream fileStream = File.OpenRead("C:\your_file.txt"))
    using (StreamReader streamReader = new StreamReader(fileStream))
    {
        string fileContent = streamReader.ReadToEnd();

        myTextBox.Text = fileContent;
    }
私野 2024-10-09 11:47:55
string value1 = System.IO.File.ReadAllText("C:\\file.txt");
System.IO.File.WriteAllText("C:\\file.txt","Hello!");
string value1 = System.IO.File.ReadAllText("C:\\file.txt");
System.IO.File.WriteAllText("C:\\file.txt","Hello!");
燕归巢 2024-10-09 11:47:55
using (StreamReader sr = new StreamReader(path)) 
{            
   textbox1.Text = sr.ReadToEnd());
}
using (StreamReader sr = new StreamReader(path)) 
{            
   textbox1.Text = sr.ReadToEnd());
}
以歌曲疗慰 2024-10-09 11:47:55
       using (StreamReader reader = File.OpenText(@"C:\your_file.txt"))

        myTextBox.Text = reader.ReadLine();
       using (StreamReader reader = File.OpenText(@"C:\your_file.txt"))

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