C#中记事本程序OpenFileDialog.FileName返回空字符串,得不到文件名 100
privatestringcurrentFN;privatevoid打开ToolStripMenuItem_Click(objectsender,EventArgse){...
private string currentFN;
private void 打开ToolStripMenuItem_Click(object sender, EventArgs e)
{
OpenFileDialog openfile1 = new OpenFileDialog();
openfile1.Filter = "文本文件(*.txt)|*.txt|所有文件(*.*)|*.*";
openfile1.InitialDirectory = @"D:\";
currentFN = openfile1.FileName; //这里我测试了下是空字符串
this.Text = currentFN;//测试语句
;
//textBox1.Text = "11111";
if (openfile1.ShowDialog() == DialogResult.OK)
{
openfile();
}
}
private void openfile()
{
try
{
this.richTextBox1.LoadFile( currentFN, RichTextBoxStreamType.PlainText);
this.Text = currentFN + "-MyNotepad";
}
catch (Exception e)
{
MessageBox.Show(e.Message);
}
}
运行调试,点击记事本界面打开,提示:this.richTextBox1.LoadFile( currentFN, RichTextBoxStreamType.PlainText);文件名不能为空 展开
private void 打开ToolStripMenuItem_Click(object sender, EventArgs e)
{
OpenFileDialog openfile1 = new OpenFileDialog();
openfile1.Filter = "文本文件(*.txt)|*.txt|所有文件(*.*)|*.*";
openfile1.InitialDirectory = @"D:\";
currentFN = openfile1.FileName; //这里我测试了下是空字符串
this.Text = currentFN;//测试语句
;
//textBox1.Text = "11111";
if (openfile1.ShowDialog() == DialogResult.OK)
{
openfile();
}
}
private void openfile()
{
try
{
this.richTextBox1.LoadFile( currentFN, RichTextBoxStreamType.PlainText);
this.Text = currentFN + "-MyNotepad";
}
catch (Exception e)
{
MessageBox.Show(e.Message);
}
}
运行调试,点击记事本界面打开,提示:this.richTextBox1.LoadFile( currentFN, RichTextBoxStreamType.PlainText);文件名不能为空 展开
3个回答
展开全部
这样判断
string fileName = string.Empty;
fileName = openFileDialog.FileName;
if (!string.IsNullOrEmpty(fileName))
{
'要执行的语句
}
else
{
essageBox.Show("你没有选择文件,不能导入数据");
}
string fileName = string.Empty;
fileName = openFileDialog.FileName;
if (!string.IsNullOrEmpty(fileName))
{
'要执行的语句
}
else
{
essageBox.Show("你没有选择文件,不能导入数据");
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
currentFN = openfile1.FileName; //这里我测试了下是空字符串
这句剪切到openfile(); 前面
这句剪切到openfile(); 前面
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
openFileDialog1.SafeFileName
追问
这个是文件名 可能我没说清楚,this.richTextBox1.LoadFile
的第一个变量是完整的路径吧
这个是文件名 可能我没说清楚,this.richTextBox1.LoadFile
的第一个变量是完整的路径吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询