我是一个完整的新手,没有关于编码或任何教育的背景 在youtube上尝试了一些教程。它是使用windows visual c#创建一个pdf文件。我在调试时遇到了一些问题..它只是说文档没有页面。
{
public MainWindow()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
Document doc = new Document(iTextSharp.text.PageSize.LETTER, 10, 10, 42, 35);
PdfWriter wri = PdfWriter.GetInstance(doc, new FileStream("New.pdf", FileMode.Create));
doc.Open();
doc.Add(new iTextSharp.text.Paragraph("Hello World"));
doc.Close();
答案 0 :(得分:0)
检查:
IOException的:
- 确保项目PC中存在您的目录。
- 您的文件是否存在?。
- 检查文件名是否正确。
醇>