2016-06-08 130 views
0

我在iTextSharp中創建一個表,所有商品,但我想保存在特定的文件夾;如何將PDF文件保存到文件夾? vb.net或itsharptext

我的代碼是:

Response.ContentType = "application/pdf" 
    Response.AddHeader("content-disposition", "attachment;filename=" & so & ".pdf") 
    Response.Cache.SetCacheability(HttpCacheability.NoCache) 

    Dim pdfDoc As New Document(PageSize.A4, 0.0F, 0.0F, 10.0F, 0.0F) 
    Dim htmlparser As New HTMLWorker(pdfDoc)PdfWriter.GetInstance(pdfDoc, Response.OutputStream) 

    pdfDoc.Open() 

這裏CODE! 在這裏,我把我的代碼,創建PDF,我完成與:

pdfDoc.Close() 

    Response.Write(pdfDoc) 
    Response.[End]() 

這裏我把我的位置這樣的:

「\藝術FS02 \ 07_ART_ECO \ 12_Samples \ 03_Samples_order \ 01_Samples_BOMs_ & _DRW \「

回答

0

只需使用FileStream保存您的文檔。

Dim pdfDoc As New Document(iTextSharp.text.PageSize.A4) 
Dim pdfWrite As PdfWriter = PdfWriter.GetInstance(pdfDoc, New FileStream(Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "\\" + "yourPDFdesiredName.pdf", FileMode.Create)) 

Saving PDF files to desktop [VB .NET]

+0

不工作:( – Vladut

相關問題