c# 如何设置excel文件名

如题所述

protected void ButSave_Click(object sender, EventArgs e)
{
sendTableName = "Phone, Illness, See_Illness,Leechdom,Notes";
sendStrSQL = this.Label8.Text;
dataBase();
DataView dv = new DataView(ds.Tables[0]);
OutputExcel(dv,"塔里木石油医院慢性病用药报表");
}
public void OutputExcel(DataView dv, string str)
{
//
// TODO: 在此处添加构造函数逻辑
//
//dv为要输出到Excel的数据,str为标题名称
GC.Collect();
//Application excel;// = new Application();
int rowIndex = 2;
int colIndex = 0;
int SUM = 0;
int number = 0;
_Workbook xBk;
_Worksheet xSt;

Excel.ApplicationClass excel = new Excel.ApplicationClass();
xBk = excel.Workbooks.Add(true);

xSt = (_Worksheet)xBk.ActiveSheet;

//
//取得标题
//
foreach (DataColumn col in dv.Table.Columns)
{
colIndex++;
excel.Cells[2, colIndex] = col.ColumnName;
xSt.get_Range(excel.Cells[2, colIndex], excel.Cells[2, colIndex]).HorizontalAlignment = XlVAlign.xlVAlignCenter;//设置标题格式为居中对齐
}

//
//取得表格中的数据
//
foreach (DataRowView row in dv)
{
rowIndex++;
colIndex = 0;
foreach (DataColumn col in dv.Table.Columns)
{
colIndex++;
//if (col.DataType == System.Type.GetType("System.DateTime"))
//{
// excel.Cells[rowIndex, colIndex] = (Convert.ToDateTime(row[col.ColumnName].ToString())).ToString("yyyy-MM-dd");
// xSt.get_Range(excel.Cells[rowIndex, colIndex], excel.Cells[rowIndex, colIndex]).HorizontalAlignment = XlVAlign.xlVAlignCenter;//设置日期型的字段格式为居中对齐
//}
//else
if (col.DataType == System.Type.GetType("System.String"))
{

excel.Cells[rowIndex, colIndex] = "'" + row[col.ColumnName].ToString();

xSt.get_Range(excel.Cells[rowIndex, colIndex], excel.Cells[rowIndex, colIndex]).HorizontalAlignment = XlVAlign.xlVAlignCenter;//设置字符型的字段格式为居中对齐
}
else
{
excel.Cells[rowIndex, colIndex] = row[col.ColumnName].ToString();
if (col.ColumnName.ToString() == "用药数量")
{
number = colIndex;
}
}
}
}
//
//加载一个合计行
//
int rowSum = rowIndex + 1;
int colSum = 1;
if (number != 0)
{
excel.Cells[rowSum, number] = this.lblnumber.Text;
}
excel.Cells[rowSum, 1] = "合计";
xSt.get_Range(excel.Cells[rowSum, 1], excel.Cells[rowSum, 1]).HorizontalAlignment = XlHAlign.xlHAlignCenter;

//if (row[col.ColumnName].ToString() = "用药数量")
//{

//}
//
//设置选中的部分的颜色
//
xSt.get_Range(excel.Cells[rowSum, colSum], excel.Cells[rowSum, colIndex]).Select();
xSt.get_Range(excel.Cells[rowSum, colSum], excel.Cells[rowSum, colIndex]).Interior.ColorIndex = 19;//设置为浅黄色,共计有56种
//
//取得整个报表的标题
//
excel.Cells[1, 1] = str;
//
//设置整个报表的标题格式
//
//xSt.get_Range(excel.Cells[1, 1], excel.Cells[1, 1]).Font.Bold = true;
xSt.get_Range(excel.Cells[1, 1], excel.Cells[1, 1]).Font.Size = 16;
//
//设置报表表格为最适应宽度
//
xSt.get_Range(excel.Cells[2, 1], excel.Cells[rowSum, colIndex]).Select();
xSt.get_Range(excel.Cells[2, 1], excel.Cells[rowSum, colIndex]).Columns.AutoFit();
//
//设置整个报表的标题为跨列居中
//
xSt.get_Range(excel.Cells[1, 1], excel.Cells[1, colIndex]).Select();
xSt.get_Range(excel.Cells[1, 1], excel.Cells[1, colIndex]).HorizontalAlignment = XlHAlign.xlHAlignCenterAcrossSelection;
//
//绘制边框
//
xSt.get_Range(excel.Cells[2, 1], excel.Cells[rowSum, colIndex]).Borders.LineStyle = 1;
xSt.get_Range(excel.Cells[2, 1], excel.Cells[rowSum, 1]).Borders[XlBordersIndex.xlEdgeLeft].Weight = XlBorderWeight.xlThick;//设置左边线加粗
xSt.get_Range(excel.Cells[2, 1], excel.Cells[2, colIndex]).Borders[XlBordersIndex.xlEdgeTop].Weight = XlBorderWeight.xlThick;//设置上边线加粗
xSt.get_Range(excel.Cells[2, colIndex], excel.Cells[rowSum, colIndex]).Borders[XlBordersIndex.xlEdgeRight].Weight = XlBorderWeight.xlThick;//设置右边线加粗
xSt.get_Range(excel.Cells[rowSum, 1], excel.Cells[rowSum, colIndex]).Borders[XlBordersIndex.xlEdgeBottom].Weight = XlBorderWeight.xlThick;//设置下边线加粗
//
//显示效果
//
excel.Visible = true;

xBk.SaveCopyAs(Server.MapPath(".") + "\\" + "2008.xls");

ds = null;
xBk.Close(false, null, null);

excel.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject(xBk);
System.Runtime.InteropServices.Marshal.ReleaseComObject(excel);
System.Runtime.InteropServices.Marshal.ReleaseComObject(xSt);
xBk = null;
excel = null;
xSt = null;
GC.Collect();
string path = Server.MapPath("2008.xls");

System.IO.FileInfo file = new System.IO.FileInfo(path);
Response.Clear();
Response.Charset = "GB2312";
Response.ContentEncoding = System.Text.Encoding.UTF8;
// 添加头信息,为"文件下载/另存为"对话框指定默认文件名
Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(file.Name));
// 添加头信息,指定文件大小,让浏览器能够显示下载进度
Response.AddHeader("Content-Length", file.Length.ToString());

// 指定返回的是一个不能被客户端读取的流,必须被下载
Response.ContentType = "application/ms-excel";

// 把文件流发送到客户端
Response.WriteFile(file.FullName);
// 停止页面的执行

Response.End();

}
另外,站长团上有产品团购,便宜有保证
温馨提示:内容为网友见解,仅供参考
第1个回答  推荐于2016-09-17

    如果Excel文件已经存在,修改文件名,用File.Move(原文件名,目的文件名)

    如果想创建一个Excel文件后保存,要用ExcelSheet 的SaveAs命令。

    把这个Excel另存为。然后关闭次Excel,打开后保存。代码:
    MyWorkBook.SaveAs(path,
    Excel.XlFileFormat.xlXMLSpreadsheet, Type.Missing, Type.Missing,
    Type.Missing, Type.Missing, Excel.XlSaveAsAccessMode.xlNoChange,
    Type.Missing, Type.Missing, Type.Missing, Type.Missing,
    Type.Missing);

第2个回答  2011-06-27
如果Excel文件已经存在,你想修改文件名,用File.Move(sorceFileName,destFileName)
sorceFileName 是原文件名,destFileName是目的文件名。
如果想创建一个Excel文件后保存,要用ExcelSheet 的SaveAs命令。
第3个回答  2011-06-27
File.creat("d:\\ddd\\aaa.xsl");
保存的路径是你自己写的,你写什么名字文件就是什么名字,比如上面建立的文件的文件名就是aaa

c# 如何在文本框中输入excel文件名,在指定文件夹内查找并打开相应excel...
using System.IO;IF(File.Exists(指定路径+"\\\\"+文件框输入的EXCEL名称+".xlsx") || File.Exists(指定路径+"\\\\"+文件框输入的EXCEL名称+".xls") )\/\/支持*.xlsx和*.xls { \/\/存在 } else { \/\/不存在 }

C#导出的excel文件的名字都是“sheet1”,怎么在代码里重命名
excel.Application.Workbooks.Add(true);这一行改成下面的 Workbook workbook1= excel.Application.Workbooks.Add(true);Worksheet worksheet1 = (Worksheet)workbook1.Worksheets["sheet1"];worksheet1.Name = "工作计划表";

c#保存excel以固定路径和文件名
按日期和时间保存不就行了 \/\/这里是路径文件名定义 { System.DateTime date = System.DateTime.Now;string time = date.ToString("yyyy-MM-dd", DateTimeFormatInfo.InvariantInfo);string path = @"C:\\";DirectoryInfo di = Directory.CreateDirectory(path + "\\\\GPRS_GB\\\\"+ time +"");string...

C#如何让EXCEL自动以当前时间为文件名保存
filename = DateTime.Now.ToFileTime().ToString();filename += "." + extendName;filename = stationName + filename;return filename;} extendName是文件扩展名,你可以改成xls。生成的文件名精确到ms,不可能重复。

c#中如何设置excel文件的默认显示sheet
1.启用宏 2.在ThisWorkBook的VB编辑器中拷贝以下代码 3.代码:Private Sub Workbook_Open()Sheet1.Select End Sub

C#中如何保存对excel的修改
\/\/设置保存的文件的名称 excel.ActiveWorkbook.SaveAs(Environment.CurrentDirectory + "\/顾客信息表.xls", XlFileFormat.xlWorkbookNormal);} catch (Exception ex){ throw ex;} finally { \/\/关闭当前活动的WorkBook excel.ActiveWorkbook.Close();\/\/退出excel应用程序 excel.Quit();} } 类似这样写,...

请问如何C#实例化一个已经打开的EXCEL工作薄。(假设文件名是1.xls)?
\/\/设置Execl列名 for (int i = 0; i < table.Columns.Count; i++){ cell[columnstart, i].PutValue(Convert.ToString(table.Columns[i].ColumnName));cell[columnstart, i].SetStyle(style1);} \/\/设置单元格内容 int posStart = columnstart + 1;for (int i = 0; i < table.Rows....

C# 怎样使excel输出字段名(英文)的标题设置中的中文?求核心代码_百度知 ...
你在c#取数据库的可以指定字段名,比如说原本是select id,code,title from xxxx就可以写成 select id as 序号,code as 代码,title as 标题 from xxxx

C# 操作Excel文件之OleDb方式
Provider:用于提供程序与Excel的连接。Data Source:指定要读取的Excel文件。Extended Properties:设置Excel属性。HDR:指示第一行是否为表头。IMEX:文件操作模式,0表示写模式,1表示读模式。实现功能如下:开发环境:无需特殊说明,任何支持C#的开发环境均可。实现代码:读取Excel文件的代码示例已经给出。若...

c#如何打开现有excel表并向其中一行一行的添加信息
string excelName= ExcelFileUrl();\/\/返回Excel的路径 string fileName = AppDomain.CurrentDomain.BaseDirectory.ToString() + excelName;\/\/保存Excle的文件路径 object missing = Missing.Value;Microsoft.Office.Interop.Excel.Application appExcel = null;\/\/实例Excel类 try { appExcel = new Microsoft...

相似回答