C#将资源文件中的excel文件保存到本地 20
展开全部
我也遇到了这个问题,并且搜到了答案,参考自:http://blog.csdn.net/venus0314/article/details/1651004
using System.Windows.Forms;
using System.IO;
/// <summary>
/// 下载Excel模版
/// </summary>
public void DownLoadTemplate()
{
SaveFileDialog dlg = new SaveFileDialog();
dlg.Title = "导出模板";
dlg.FileName = "模板名称.xls";
if (dlg.ShowDialog() == DialogResult.OK)
{
//检查路径正确性
if(dlg.FileName.Trim().Length <= 0)
{
MessageBox.Show("请选择路径。");
return;
}
//检查文件夹是否存在
int n = dlg.FileName.LastIndexOf(@"\") + 1;
if(n < 0)
{
MessageBox.Show("路径错误。");
return;
}
string PathStr = dlg.FileName.Substring(0, n);
if (!Directory.Exists(PathStr))
{
MessageBox.Show("路径不存在,请检查。");
return;
}
//导出 我的Excel资源:TestMasterplate.xls
byte[] template = Properties.Resources.TestMasterplate;//Excel资源去掉后缀名
//以下两种方法择一使用
//方法一:
FileStream stream = new FileStream(dlg.FileName,FileMode.Create);
stream.Write(template, 0, template.Length);
stream.Close();
stream.Dispose();
//方法二:
File.WriteAllBytes(dlg.FileName, template);
}
}
using System.Windows.Forms;
using System.IO;
/// <summary>
/// 下载Excel模版
/// </summary>
public void DownLoadTemplate()
{
SaveFileDialog dlg = new SaveFileDialog();
dlg.Title = "导出模板";
dlg.FileName = "模板名称.xls";
if (dlg.ShowDialog() == DialogResult.OK)
{
//检查路径正确性
if(dlg.FileName.Trim().Length <= 0)
{
MessageBox.Show("请选择路径。");
return;
}
//检查文件夹是否存在
int n = dlg.FileName.LastIndexOf(@"\") + 1;
if(n < 0)
{
MessageBox.Show("路径错误。");
return;
}
string PathStr = dlg.FileName.Substring(0, n);
if (!Directory.Exists(PathStr))
{
MessageBox.Show("路径不存在,请检查。");
return;
}
//导出 我的Excel资源:TestMasterplate.xls
byte[] template = Properties.Resources.TestMasterplate;//Excel资源去掉后缀名
//以下两种方法择一使用
//方法一:
FileStream stream = new FileStream(dlg.FileName,FileMode.Create);
stream.Write(template, 0, template.Length);
stream.Close();
stream.Dispose();
//方法二:
File.WriteAllBytes(dlg.FileName, template);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询