中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

如何使用Aspose.Cells組件生成Excel文件-創(chuàng)新互聯(lián)

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

成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),大東企業(yè)網(wǎng)站建設(shè),大東品牌網(wǎng)站建設(shè),網(wǎng)站定制,大東網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,大東網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。

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

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

當(dāng)然更復(fù)雜的一些也可以通過(guò) 合并單元格的方法 public void Merge(int firstRow, int firstColumn, int totalRows, int totalColumns)來(lái)實(shí)現(xiàn)。

實(shí)現(xiàn)方式:

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

2. 實(shí)現(xiàn)代碼如下:

復(fù)制代碼 代碼如下:

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

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

            #region 表頭
            //標(biāo)題
            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("標(biāo)準(zhǔn)化工作意見(jiàn)建議匯總表");   //填寫(xiě)內(nèi)容
            cells[0, 0].SetStyle(style);            //給單元格關(guān)聯(lián)樣式 
            cells.SetRowHeight(0, 28);              //設(shè)置行高

            //發(fā)布時(shí)間
            style.HorizontalAlignment = TextAlignmentType.Left;
            style.Font.Size = 11;
            style.Font.IsBold = false;
            cells.Merge(1, 0, 1, 7);
            cells[1, 0].PutValue(String.Format("發(fā)布起止時(shí)間:{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);

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

            #region 表格

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

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

            //建議部門(mén)
            cells[2, 2].PutValue("建議部門(mén)");
            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);

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

            //標(biāo)準(zhǔn)名稱
            cells[2, 6].PutValue("標(biāo)準(zhǔn)名稱");
            cells[2, 6].SetStyle(style);
            cells.SetColumnWidthPixel(6, 114);

            //標(biāo)準(zhǔn)章、條編號(hào)
            cells[2, 7].PutValue("標(biāo)準(zhǔn)章、條編號(hào)");
            cells[2, 7].SetStyle(style);
            cells.SetColumnWidthPixel(7, 104);

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

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

            //處理進(jìn)度
            cells[2, 10].PutValue("處理進(jìn)度");
            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();//生成數(shù)據(jù)流
            byte[] bt = ms.ToArray();

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


3. 生成好的Excel可以保存到磁盤(pán),也可以在web頁(yè)面上通過(guò)流的方式來(lái)下載。

復(fù)制代碼 代碼如下:

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

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

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

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

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


到此,關(guān)于“如何使用Aspose.Cells組件生成Excel文件”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

網(wǎng)站欄目:如何使用Aspose.Cells組件生成Excel文件-創(chuàng)新互聯(lián)
本文鏈接:http://www.rwnh.cn/article28/cepecp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁(yè)設(shè)計(jì)公司App開(kāi)發(fā)、服務(wù)器托管、定制網(wǎng)站、企業(yè)網(wǎng)站制作靜態(tài)網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

網(wǎng)站托管運(yùn)營(yíng)
门头沟区| 赤壁市| 定襄县| 深泽县| 大冶市| 婺源县| 石家庄市| 门头沟区| 黑河市| 大化| 陆河县| 祁连县| 甘孜| 手游| 平顶山市| 靖江市| 丹东市| 谷城县| 郯城县| 濉溪县| 万载县| 平原县| 尚义县| 天气| 隆子县| 来宾市| 肥西县| 陆河县| 四平市| 永丰县| 枣强县| 苏尼特左旗| 什邡市| 日土县| 西乡县| 岳阳市| 彩票| 邛崃市| 县级市| 长岭县| 成武县|