1

我正在关注本教程,但我的 pdf 文件没有保存到哪里?谢谢您的帮助!

using System; 
using com.lowagie.text;
using com.lowagie.text.pdf;
using System.IO;

public class Chap0101 
{

public static void Main(string[] args) 
{
    Console.WriteLine("Chapter 1 example 1: Hello World");

    // step 1: creation of a document-object
    Document document = new Document();

    // step 2:
    // we create a writer that listens to the document
    // and directs a PDF-stream to a file
    PdfWriter.getInstance(document, new FileStream("Chap0101.pdf", FileMode.Create));

    // step 3: we open the document
    document.open();

    // step 4: we add a paragraph to the document
    document.add(new Paragraph("Hello World"));

    // step 5: we close the document
    document.close();
}
}
4

2 回答 2

2

它可能正在保存 Visual Studio 指定的默认位置。

您应该更改FileStream语句以定义位置:

PdfWriter.getInstance(document, new FileStream("c:\\Chap0101.pdf", FileMode.Create));

可以修改 Visual Studio 默认值,但最有可能查看(假设 2010 年):

\Users\{yourUsername}\Documents\Visual Studio 2010\...\bin\Debug
于 2013-02-01T18:38:38.833 回答
1

它将位于可执行文件的工作目录中,即它旁边。如果您从 Visual Studio 运行它,请查看projectDirectory\bin\Debug.

于 2013-02-01T18:39:04.283 回答