怎样打开一个记事本文件并显示在winform窗体的textbox空间里
5个回答
展开全部
1:记得引入命名空间 using System.IO;
2:textbox控件点击又上角的三角形选择multiiLine.即为多行显示。
OpenFileDialog op = new OpenFileDialog();
if(op.ShowDialog()== System.Windows.Forms.DialogResult.OK)
{
StreamReader read = new StreamReader(op.FileName, Encoding.Default);
textBox2.Text = read.ReadToEnd();
read.Close();
}
2:textbox控件点击又上角的三角形选择multiiLine.即为多行显示。
OpenFileDialog op = new OpenFileDialog();
if(op.ShowDialog()== System.Windows.Forms.DialogResult.OK)
{
StreamReader read = new StreamReader(op.FileName, Encoding.Default);
textBox2.Text = read.ReadToEnd();
read.Close();
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-04-23
展开全部
向窗体添加一个openfiledialog和一button
button双击事件中添加显示openfiledialog对话框代码,如this.openfiledialog1.ShowDialog()
读取文件string tempstr=File.ReadAllText(this.openfiledialog1.FileName)
或者string[] tempstr=File.ReadAllLine(this.openfiledialog1.FileName)
然后this.Text=tempstr
button双击事件中添加显示openfiledialog对话框代码,如this.openfiledialog1.ShowDialog()
读取文件string tempstr=File.ReadAllText(this.openfiledialog1.FileName)
或者string[] tempstr=File.ReadAllLine(this.openfiledialog1.FileName)
然后this.Text=tempstr
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个要改环境变量,将打开文件设置为你自己的WINFORM程序,或者点右键 选择打开方式,选择到你自己的WINFORM程序
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
FileStream ss = new FileStream(MyfileName, FileMode.Open);
StreamReader dd = new StreamReader(ss,Encoding.GetEncoding("gb2312"));
str1 = dd.ReadToEnd();
this.textBox1.Text = str1;
MyfileName 文件夹路径+文件名字.txt \
注意 textbox的属性 MulitiLine属性设置成 true
scrollBars 设置成Vertical
StreamReader dd = new StreamReader(ss,Encoding.GetEncoding("gb2312"));
str1 = dd.ReadToEnd();
this.textBox1.Text = str1;
MyfileName 文件夹路径+文件名字.txt \
注意 textbox的属性 MulitiLine属性设置成 true
scrollBars 设置成Vertical
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
FileStream fs1 = new FileStream(MyfileName, FileMode.Open);
StreamReader sr = new StreamReader(fs1,Encoding.GetEncoding("gb2312"));
str1 = sr.ReadToEnd();
this.textBox1.Text = str1;
sr.Close();
fs1.Close();
MyfileName 文件夹路径+文件名字.txt \
注意 textbox的属性 MulitiLine属性设置成 true
scrollBars 设置成Vertical
StreamReader sr = new StreamReader(fs1,Encoding.GetEncoding("gb2312"));
str1 = sr.ReadToEnd();
this.textBox1.Text = str1;
sr.Close();
fs1.Close();
MyfileName 文件夹路径+文件名字.txt \
注意 textbox的属性 MulitiLine属性设置成 true
scrollBars 设置成Vertical
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |