我正在学习本教程,但我不是将我的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();
}
}
答案 0 :(得分: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
答案 1 :(得分:2)
它将位于您的可执行文件的工作目录中,即它旁边。如果从Visual Studio运行此命令,请查看projectDirectory\bin\Debug
。