使用 Debenu PDFViewer 在磁盘上保存附件文件失败

Saving Attachment Files on the disk using Debenu PDFViewer get failed

我在 VS2008 中的 C# 项目的 winForm 中使用了 Debenu PDFViewer。我想将附件保存在磁盘上。附件已保存,但方法的 return 值为 0(表示失败)。保存的文件无法在 Adob​​e 上打开 Reader 弹出消息是这样的

有我的代码来加载 pdf 文件并保存附件文件。

if (openFileDialog1.ShowDialog() == DialogResult.OK)
        {
            axDPVActiveX1.OpenFile(openFileDialog1.FileName);
              for (int i = 1; i <= axDPVActiveX1.DQPLEmbeddedFileCount(); i++)
            {      
              if (axDPVActiveX1.DQPLGetEmbeddedFileStrProperty(i, 5).Contains(".pdf"))
                {


                      if (axDPVActiveX1.DQPLGetEmbeddedFileContentToFile(i, @"C:\Users\userName\Desktop\Test folder\" + axDPVActiveX1.DQPLGetEmbeddedFileStrProperty(i, 5) == 1)
                    {
                        MessageBox.Show("Done!");
                    }
                    else
                    {
                        MessageBox.Show("Failed!");
                    }
                    MessageBox.Show(axDPVActiveX1.DQPLGetEmbeddedFileContentToString(i));
                }
            }
        }


    Would someone show me how to fix it. Thanks in advance.

我已经检查了你的代码,在我这边,我的测试文件正常工作(来自 DQPLGetEmbeddedFileContentToFile if 语句中缺少的一个括号)。

您可以尝试使用此测试文件在您这边进行测试: attachTest.pdf

如果有效,则您的 PDF 文档可能格式不正确。如果是这样的话,如果你能把有这个问题的样本文件发给我,那将会很有帮助。这是我现在唯一可以帮助你的方法。