4

如何导出pdfusing FastReport.netand asp.net?我想将文件导出到控制器中。我在 FastReport 网站上尝试过这种方式支持:

public FileResult GetFile()
        {
            WebReport webReport = new WebReport();

            // bind data
            System.Data.DataSet dataSet = new System.Data.DataSet();
            dataSet.ReadXml(report_path + "nwind.xml");
            webReport.Report.RegisterData(dataSet, "NorthWind");

            // load report
            webReport.ReportFile = this.Server.MapPath("~/App_Data/report.frx");

            // prepare report
            webReport.Report.Prepare();

            // save file in stream
            Stream stream = new MemoryStream();
            webReport.Report.Export(new PDFExport(), stream);
            stream.Position = 0;

            // return stream in browser
            return File(stream, "application/zip", "report.pdf");
        }

但随后的大小pdf始终为 0 字节。

有人知道我的问题的解决方案吗?

4

2 回答 2

9

好的,现在我找到了解决方案。只需使用普通Report(不是WebReport)并设置WebModetrue. pdf-Export 上的其他设置只是为了好玩。

所以,这可以解决问题:

public FileResult GetFile(Dataset dataset1)
{
    FastReport.Utils.Config.WebMode = true;
    Report rep = new Report();
    rep.Load(Request.PhysicalApplicationPath + "App_Data/report.frx");    

    rep.RegisterData(dataset1);

    if (rep.Report.Prepare())
    {
        // Set PDF export props
        FastReport.Export.Pdf.PDFExport pdfExport = new FastReport.Export.Pdf.PDFExport();
        pdfExport.ShowProgress = false;
        pdfExport.Subject = "Subject";
        pdfExport.Title = "xxxxxxx";
        pdfExport.Compressed = true;
        pdfExport.AllowPrint = true;
        pdfExport.EmbeddingFonts = true;

        MemoryStream strm = new MemoryStream();
        rep.Report.Export(pdfExport, strm);
        rep.Dispose();
        pdfExport.Dispose();
        strm.Position = 0;

        // return stream in browser
        return File(strm, "application/pdf", "report.pdf");
    }
    else
    {
        return null;
    } 
}

可惜这样的代码模板在开发者官网是错误的。

于 2013-08-07T12:00:14.023 回答
0

在 2017.1 为我工作

    public void GetFile()
    {
        SetReport();
        webReport.ExportPdf();
    }

    public void GetPrint()
    {
        SetReport();
        webReport.Prepare();
        webReport.PrintPdf();
    }
于 2017-02-09T06:16:27.943 回答