我的文件流创建的文件保存在哪里
本文关键字:文件 保存 在哪里 创建 我的 | 更新日期: 2023-09-27 17:56:57
我正在学习本教程,但我不是我的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();
}
}
它可能正在保存Visual Studio指定的默认位置。
您应该更改 FileStream
语句以定义位置:
PdfWriter.getInstance(document, new FileStream("c:''Chap0101.pdf", FileMode.Create));
Visual Studio默认值可以修改,但最有可能查看(假设2010):
'Users'{yourUsername}'Documents'Visual Studio 2010'...'bin'Debug
它将
位于可执行文件的工作目录中,即在它旁边。如果您从Visual Studio运行此内容,请查看projectDirectory'bin'Debug
。