C#使用doggleReport生成pdf報(bào)表的方法
本文實(shí)例講述了C#使用doggleReport生成pdf報(bào)表的方法。分享給大家供大家參考,具體如下:
1. 安裝nuget
-install package DoddleReport -install package DoddleReport.iTextSharp
2. 實(shí)例代碼
static void Main(string[] args) { var query = GetAll(); var report = new Report(query.ToReportSource()); report.TextFields.Title = "Graduate Student Report"; report.TextFields.SubTitle = "sample header"; report.TextFields.Footer = "sample footer"; report.TextFields.Header = string.Format(@" Report Generated: {0} Total Students: {1}", DateTime.Now, 100); report.RenderHints.BooleanCheckboxes = true; report.DataFields["Id"].Hidden = true; var stream = new MemoryStream(); var writer = new PdfReportWriter(); writer.WriteReport(report, stream); const string path = "C:\\test"; if (!Directory.Exists(path)) { Directory.CreateDirectory(path); } File.WriteAllBytes(string.Format(path+"/studentReport_{0}.pdf",DateTime.Now.ToString("dd-MM-yyyy_HH-mm-ss")), stream.GetBuffer()); Console.WriteLine("done"); } public class Student { public int Id { get; set; } public string Name { get; set; } public bool IsPass { get; set; } public int Score { get; set; } public DateTime GraduateAt { get; set; } } public static List<Student> GetAll() { var rand = new Random(); return Enumerable.Range(1, 1000) .Select(i => new Student { Id = i, Name = "Product " + i, Score = rand.Next(100), GraduateAt = DateTime.Now }) .ToList(); }
3. 在C:\test文件夾中查看結(jié)果
更多關(guān)于C#相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《C#文件操作常用技巧匯總》、《C#常見控件用法教程》、《WinForm控件用法總結(jié)》、《C#數(shù)據(jù)結(jié)構(gòu)與算法教程》、《C#面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》及《C#程序設(shè)計(jì)之線程使用技巧總結(jié)》
希望本文所述對(duì)大家C#程序設(shè)計(jì)有所幫助。
欄 目:C#教程
下一篇:C#使用正則表達(dá)式隱藏手機(jī)號(hào)中間四位為*
本文標(biāo)題:C#使用doggleReport生成pdf報(bào)表的方法
本文地址:http://mengdiqiu.com.cn/a1/C_jiaocheng/5641.html
您可能感興趣的文章
- 01-10C#使用Dispose模式實(shí)現(xiàn)手動(dòng)對(duì)資源的釋放
- 01-10C#3.0使用EventLog類寫Windows事件日志的方法
- 01-10C#使用windows服務(wù)開啟應(yīng)用程序的方法
- 01-10c# ArrayList的使用方法小總結(jié)
- 01-10C#使用ADO.Net部件來訪問Access數(shù)據(jù)庫(kù)的方法
- 01-10C#使用Mutex簡(jiǎn)單實(shí)現(xiàn)程序單實(shí)例運(yùn)行的方法
- 01-10C#獲取動(dòng)態(tài)生成的CheckBox值
- 01-10使用Nopcommerce為商城添加滿XX減XX優(yōu)惠券功能
- 01-10基于C#實(shí)現(xiàn)簡(jiǎn)單離線注冊(cè)碼生成與驗(yàn)證
- 01-10C#中yield用法使用說明


閱讀排行
- 1C語言 while語句的用法詳解
- 2java 實(shí)現(xiàn)簡(jiǎn)單圣誕樹的示例代碼(圣誕
- 3利用C語言實(shí)現(xiàn)“百馬百擔(dān)”問題方法
- 4C語言中計(jì)算正弦的相關(guān)函數(shù)總結(jié)
- 5c語言計(jì)算三角形面積代碼
- 6什么是 WSH(腳本宿主)的詳細(xì)解釋
- 7C++ 中隨機(jī)函數(shù)random函數(shù)的使用方法
- 8正則表達(dá)式匹配各種特殊字符
- 9C語言十進(jìn)制轉(zhuǎn)二進(jìn)制代碼實(shí)例
- 10C語言查找數(shù)組里數(shù)字重復(fù)次數(shù)的方法
本欄相關(guān)
- 01-10C#通過反射獲取當(dāng)前工程中所有窗體并
- 01-10關(guān)于ASP網(wǎng)頁(yè)無法打開的解決方案
- 01-10WinForm限制窗體不能移到屏幕外的方法
- 01-10WinForm繪制圓角的方法
- 01-10C#實(shí)現(xiàn)txt定位指定行完整實(shí)例
- 01-10WinForm實(shí)現(xiàn)仿視頻播放器左下角滾動(dòng)新
- 01-10C#停止線程的方法
- 01-10C#實(shí)現(xiàn)清空回收站的方法
- 01-10C#通過重寫Panel改變邊框顏色與寬度的
- 01-10C#實(shí)現(xiàn)讀取注冊(cè)表監(jiān)控當(dāng)前操作系統(tǒng)已
隨機(jī)閱讀
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 08-05織夢(mèng)dedecms什么時(shí)候用欄目交叉功能?
- 01-11ajax實(shí)現(xiàn)頁(yè)面的局部加載
- 01-10C#中split用法實(shí)例總結(jié)
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 01-10delphi制作wav文件的方法
- 04-02jquery與jsp,用jquery
- 08-05DEDE織夢(mèng)data目錄下的sessions文件夾有什
- 01-10使用C語言求解撲克牌的順子及n個(gè)骰子
- 08-05dedecms(織夢(mèng))副欄目數(shù)量限制代碼修改