码迷,mamicode.com
首页 > Windows程序 > 详细

【导出pdf】 c# 利用iTextSharp导出pdf

时间:2017-10-30 14:55:50      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:write   file   iter   ase   ntc   alt   arp   files   highlight   

技术分享

 

  public static bool ToPdf(DataTable dt, string filepath, string fileName)
        {
            Document document = new Document();
            PdfWriter.GetInstance(document, new FileStream(filepath + fileName, FileMode.Create));
            document.Open();
            BaseFont bfChinese = BaseFont.CreateFont("C:\\WINDOWS\\Fonts\\simsun.ttc,1", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            iTextSharp.text.Font fontChinese = new iTextSharp.text.Font(bfChinese, 12, iTextSharp.text.Font.NORMAL, Color.BLACK);

           
            PdfPTable table = new PdfPTable(dt.Columns.Count);
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                if (i == 0)
                {
                    for (int j = 0; j < dt.Columns.Count; j++)
                    {
                        table.AddCell(new Phrase(dt.Columns[j].ToString(), fontChinese));
                    }
                }
                for (int j = 0; j < dt.Columns.Count; j++)
                {
                    
                    table.AddCell(new Phrase(dt.Rows[i][j].ToString(), fontChinese));
                }
            }
            document.Add(table);
            document.Close();
            return true;
        }

  

【导出pdf】 c# 利用iTextSharp导出pdf

标签:write   file   iter   ase   ntc   alt   arp   files   highlight   

原文地址:http://www.cnblogs.com/qifei-jia/p/7753519.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!