无法使用iTextSharp创建PDF文件

时间:2013-06-28 20:52:25

标签: c# pdf error-handling datatable itextsharp

这是我使用iTextSharp库创建PDF文件的代码:

public void ExportToPdf(DataTable dt)
        {
            Document document = new Document();
            PdfWriter writer = PdfWriter.GetInstance(document, new FileStream("c:\\sample.pdf", FileMode.Create));
            document.Open();
            iTextSharp.text.Font font5 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA, 5);

            PdfPTable table = new PdfPTable(dt.Columns.Count);
            PdfPRow row = null;
            float[] widths = new float[] { 4f, 4f, 4f, 4f };

            table.SetWidths(widths);

            table.WidthPercentage = 100;
            int iCol = 0;
            string colname = "";
            PdfPCell cell = new PdfPCell(new Phrase("Products"));

            cell.Colspan = dt.Columns.Count;

            foreach (DataColumn c in dt.Columns)
            {

                table.AddCell(new Phrase(c.ColumnName, font5));
            }

            foreach (DataRow r in dt.Rows)
            {
                if (dt.Rows.Count > 0)
                {
                    table.AddCell(new Phrase(r[0].ToString(), font5));
                    table.AddCell(new Phrase(r[1].ToString(), font5));
                    table.AddCell(new Phrase(r[2].ToString(), font5));
                    table.AddCell(new Phrase(r[3].ToString(), font5));
                }
            } document.Add(table);
            document.Close();
        }

这一行:PdfWriter writer = PdfWriter.GetInstance(document, new FileStream("c:\\sample.pdf", FileMode.Create));给了我这个错误Access to the path 'c:\sample.pdf' is denied. - 我是否需要在此处创建文件或缺少某些内容?

2 个答案:

答案 0 :(得分:2)

这不是iTextSharp问题。这是一个普遍的I / O问题。尝试使用路径C:\\sample.pdf创建任何其他文件时,您会遇到同样的问题。可能的原因是:您不能直接写入C:驱动器,或者文件sample.pdf已经存在且无法覆盖(其权限不允许,或者已被锁定)实例,因为它在PDF查看器中打开。)

您已经知道这正是错误消息所说的内容:

  

拒绝访问路径'c:\ sample.pdf'。

使用其他路径。使用测试文件污染C:驱动器不是一个好习惯。

答案 1 :(得分:2)

尝试更改 FileAccess

  

new FileStream(“c:\ sample.pdf”,FileMode.Create,FileAccess.ReadWrite)