免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

如何使用Aspose.Cells組件生成Excel文件-創新互聯

這篇文章主要介紹“如何使用Aspose.Cells組件生成Excel文件”,在日常操作中,相信很多人在如何使用Aspose.Cells組件生成Excel文件問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何使用Aspose.Cells組件生成Excel文件”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

成都創新互聯是一家集網站建設,大東企業網站建設,大東品牌網站建設,網站定制,大東網站建設報價,網絡營銷,網絡優化,大東網站推廣為一體的創新建站企業,幫助傳統企業提升企業形象加強企業競爭力。可充分滿足這一群體相比中小企業更為豐富、高端、多元的互聯網需求。同時我們時刻保持專業、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們為更多的企業打造出實用型網站。

生成帶表頭的Excel文件,格式如下顯示。

如何使用Aspose.Cells組件生成Excel文件

當然更復雜的一些也可以通過 合并單元格的方法 public void Merge(int firstRow, int firstColumn, int totalRows, int totalColumns)來實現。

實現方式:

1. 首先,需要添加對"Aspose.Cells.dll"的引用。

2. 實現代碼如下:

復制代碼 代碼如下:

//新建工作簿
            Workbook workbook = new Workbook(); //工作簿
            Worksheet sheet = workbook.Worksheets[0]; //工作表
            Cells cells = sheet.Cells;//單元格

            Style style = workbook.Styles[workbook.Styles.Add()];//新增樣式

            #region 表頭
            //標題
            style.HorizontalAlignment = TextAlignmentType.Center;//文字居中 
            style.Font.Name = "宋體";//文字字體
            style.Font.Size = 18;//文字大小 
            style.Font.IsBold = true;//粗體

            cells.Merge(0, 0, 1, 12);               //合并單元格
            cells[0, 0].PutValue("標準化工作意見建議匯總表");   //填寫內容
            cells[0, 0].SetStyle(style);            //給單元格關聯樣式 
            cells.SetRowHeight(0, 28);              //設置行高

            //發布時間
            style.HorizontalAlignment = TextAlignmentType.Left;
            style.Font.Size = 11;
            style.Font.IsBold = false;
            cells.Merge(1, 0, 1, 7);
            cells[1, 0].PutValue(String.Format("發布起止時間:{0}至{1}",DateTime.Now.AddDays(-1).ToString("yyyy年MM月dd日"),DateTime.Now.ToString("yyyy年MM月dd日")));
            cells[1, 0].SetStyle(style);
            cells.SetRowHeight(1, 20);

            //統計時間
            style.HorizontalAlignment = TextAlignmentType.Right;
            style.Font.Size = 11;
            style.Font.IsBold = false;
            cells.Merge(1, 7, 1, 5);
            cells[1, 7].PutValue(String.Format("統計時間:{0}", DateTime.Now.ToString("yyyy年MM月dd日")));
            cells[1, 7].SetStyle(style);
            cells.SetRowHeight(1, 20);
            #endregion

            #region 表格

            #region 表格標題行
            //序號
            style.HorizontalAlignment = TextAlignmentType.Center;
            cells[2, 0].PutValue("序號");
            cells[2, 0].SetStyle(style);
            cells.SetRowHeight(2, 20);
            cells.SetColumnWidthPixel(0, 38);

            //建議時間
            cells[2, 1].PutValue("建議時間");
            cells[2, 1].SetStyle(style);
            cells.SetColumnWidthPixel(1, 77);

            //建議部門
            cells[2, 2].PutValue("建議部門");
            cells[2, 2].SetStyle(style);
            cells.SetColumnWidthPixel(2, 107);

            //建 議 人
            cells[2, 3].PutValue("建 議 人");
            cells[2, 3].SetStyle(style);
            cells.SetColumnWidthPixel(3, 69);

            //類   別
            cells[2, 4].PutValue("類   別");
            cells[2, 4].SetStyle(style);
            cells.SetColumnWidthPixel(4, 71);

            //業務種類
            cells[2, 5].PutValue("業務種類");
            cells[2, 5].SetStyle(style);
            cells.SetColumnWidthPixel(5, 71);

            //標準名稱
            cells[2, 6].PutValue("標準名稱");
            cells[2, 6].SetStyle(style);
            cells.SetColumnWidthPixel(6, 114);

            //標準章、條編號
            cells[2, 7].PutValue("標準章、條編號");
            cells[2, 7].SetStyle(style);
            cells.SetColumnWidthPixel(7, 104);

            //意見建議
            cells[2, 8].PutValue("意見建議");
            cells[2, 8].SetStyle(style);
            cells.SetColumnWidthPixel(8, 255);

            //處理部門
            cells[2, 9].PutValue("處理部門");
            cells[2, 9].SetStyle(style);
            cells.SetColumnWidthPixel(9, 72);

            //處理進度
            cells[2, 10].PutValue("處理進度");
            cells[2, 10].SetStyle(style);
            cells.SetColumnWidthPixel(10, 72);

            //備注
            cells[2, 11].PutValue("備注");
            cells[2, 11].SetStyle(style);
            cells.SetColumnWidthPixel(11, 255);

            #endregion

            #endregion

            System.IO.MemoryStream ms = workbook.SaveToStream();//生成數據流
            byte[] bt = ms.ToArray();

            workbook.Save(@"E:\test.xls");//保存到硬盤
        }


3. 生成好的Excel可以保存到磁盤,也可以在web頁面上通過流的方式來下載。

復制代碼 代碼如下:

//下載
            System.IO.MemoryStream ms = workbook.SaveToStream();//生成數據流
            byte[] bt = ms.ToArray();

            string fileName = "標準化工作意見建議匯總表" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls";//客戶端保存的文件名
            //以字符流的形式下載文件

            Response.ContentType = "application/vnd.ms-excel";

            //通知瀏覽器下載文件而不是打開
            Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
            Response.BinaryWrite(bt);

            Response.Flush();
            Response.End();


到此,關于“如何使用Aspose.Cells組件生成Excel文件”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注創新互聯網站,小編會繼續努力為大家帶來更多實用的文章!

網站欄目:如何使用Aspose.Cells組件生成Excel文件-創新互聯
本文鏈接:http://m.newbst.com/article28/cepecp.html

成都網站建設公司_創新互聯,為您提供網頁設計公司App開發服務器托管定制網站企業網站制作靜態網站

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

網站托管運營