iTextSharp System.IO.FileNotFoundException

时间:2017-02-15 23:25:18

标签: c# visual-studio itext

我在下面的发布版本中收到System.IO.FileNotFoundException但在调试时没有得到它。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Forms;
using System.Text.RegularExpressions;
using Microsoft.Office.Interop.Word;
using System.IO;
using iTextSharp.text.pdf;
using iTextSharp.text.pdf.parser;
using iTextSharp.text.xml;
using Microsoft.VisualBasic;

namespace CountingTool
{
    public partial class MainWindow : System.Windows.Window
    {
        private string SelectedFile;

        public MainWindow()
        {
            InitializeComponent();
        }        

        private void LoadFileButton_Click(object sender, System.EventArgs e)
        {
            OpenFileDialog LoadFileDialog = new OpenFileDialog();

            LoadFileDialog.Title = "Select file";
            LoadFileDialog.Filter = "PDF files|*.pdf";
            LoadFileDialog.InitialDirectory = @"C:\";

            if (LoadFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                try
                {
                    SelectedFile = LoadFileDialog.FileName;
                 }
                catch (Exception ex)
                {
                    System.Windows.Forms.MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
                }
            }
        }

        private void CountEach()
        {
            string FullPdf = ExtractFullPdf();
            ...
        }

        private string ExtractFullPdf()
        {
            PdfReader sourceDocument = new PdfReader(SelectedFile);
            StringBuilder text = new StringBuilder();

            for (int i = 1; i <= sourceDocument.NumberOfPages; i++)
            {
                text.Append(PdfTextExtractor.GetTextFromPage(sourceDocument, i));
            }

            sourceDocument.Close();
            return text.ToString();
        }
}

似乎导致此问题的一行是PdfReader sourceDocument = new PdfReader(SelectedFile);

任何想法都会非常感激。

由于

2 个答案:

答案 0 :(得分:1)

这里的问题是itextsharp.dll需要与构建的.exe位于同一目录中。

答案 1 :(得分:0)

如果你完全确定你指定的路径是正确的,即使这可能不太可能,那么我建议你使用:

Request.PhysicalApplicationPath(“在此处输入路径”);

Server.MapPath(“在此处输入路径”);