C#中怎么把窗口中显示的内容输入到文本文件中去

如题所述

using System.IO;

private void WriteText(string filePath,string content)
{
if(!File.Exists(filepath))
File.Create(filepath);
using (StreamWriter outfile = new StreamWriter(filepath))
{
outfile.Write(content);
}

}
其中filePath为保存文件的路径,content为要写入的内容追问

怎么结合窗口里的控件,如:把richTextBox2中的内容输入到E:\MyTest.txt中去

追答

直接调用方法WriteText("E:\MyTest.txt",richTextBox2.Text)就行了

温馨提示:内容为网友见解,仅供参考
第1个回答  2014-03-29
使用IO流
最简单的方法是使用File.WriteAllText()方法 直接传入文件路径和要写入的文字即可追问

能写个完整的句子吗?如:把richTextBox2中的内容输入到E:\MyTest.txt中去

C#中怎么把窗口中显示的内容输入到文本文件中去
using System.IO;private void WriteText(string filePath,string content){ if(!File.Exists(filepath))File.Create(filepath);using (StreamWriter outfile = new StreamWriter(filepath)){ outfile.Write(content);} } 其中filePath为保存文件的路径,content为要写入的内容 ...

c#如何将文本和图片一起输出到word书签中
选择好你要导出的纪录然后选择文件>导出>其它通讯薄,在弹出的窗口输入你存放文件的位置和文件名,这是存为文本文件了。然后用word打开就可以了

如果用c#代码实现:运行——cmd——notepad,对找开的文本文件进行...
首先你需要获得notpad的句柄,然后用WINAPI里面的sendmessage写入到记事本 首先添加引用 using System.Runtime.InteropServices;调用方法如下:[DllImport("User32.DLL")]public static extern int SendMessage(IntPtr hWnd, uint Msg, int wParam, string lParam);[DllImport("User32.DLL")]public static...

C#中如何点击按钮在本页面中弹出一个新窗口,并把在新窗口中输入的值传...
通过js操作 parent.getElementById("txt").value = xxx;

C#编程时,windows窗体,如何将方法返回值写入文本框,也就是把返回值展 ...
DialogResult res = cf.ShowDialog();\/\/这里使用模式对话框可以获取到子窗体中的回应消息 if (res == DialogResult.OK){ MessageBox.Show("被传入窗体中输入的值为:" + cf.textBox1.Text);} } \/\/接收窗体 public string userName = string.Empty;private void btnOK_Click(object sender, ...

C#中怎样让数据库中的信息都依次填充到窗口的文本框控件中,还有查询功 ...
把查询到的单条记录保存到一个DataTable中,然后dt.Rows[0][1],什么的遍历这条记录,填充就好。

C# 中 一个窗体中的texbox内容显示在另一个窗体中的textbox中。如何实 ...
把窗口2的textbox的modifiers属性设为public 在窗口1中订阅窗口二的textbox的KeyUp事件。窗口1代码:private void button1_Click(object sender, EventArgs e){ Form2 frm = new Form2();frm.textBox1.KeyUp += new KeyEventHandler(textBox1_KeyUp);frm.Show();} void textBox1_KeyUp(object...

C#中如何将一个窗口中控件的数据传到另一个窗口中
public string GetStudentText(){ return this.student.Text;} 你再form2 中实例化 把这个写成全局的 Form1 form=null;form=new Form1();然后你想改变Form1中的text值 就只需要修改text 调用 form.SetStudentText("123456");form1的那个student那个textbox的text属性就变味123456了 需要赋值 调用 ...

c#如何实现把文本框中的汉字输入到word或者QQ聊天中
用API函数 FindWindow和SendMessage

c# 如何将textbox内容保存到记事本中并调用输出
\/\/写文件 FileStream file = new FileStream("score.txt", FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite);\/\/建立一个文件 StreamWriter writer = new StreamWriter(file); \/\/设置文件时可以写的 writer.WriteLine(textBox1.Text);writer.Close();file.Close();\/\/读文件(在窗体构造...

相似回答