1

在下面的代码中,用户将输入一个搜索字符串(barcodedata)。然后该字符串将被截断为前 5 个字符,并用作作业编号。作业编号也是我将扫描条形码数据的 pdf 的名称。

我想要的是“查找”按钮执行以下代码,然后将找到的值返回给 startpagedata。

我无法判断程序是否实际上并未扫描 PDF 以查找搜索字符串,或者该值是否根本没有返回到程序。

using BitMiracle.Docotic.Pdf;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.IO;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using System.Windows.Forms;
using Acrobat;

namespace BarCodeReader
{
    public partial class Form1 : Form
    {
        public string stringsToFind;
        public string pathtofile;

        public Form1()
        {
            InitializeComponent();
        }

        private void barcodedata_TextChanged(object sender, EventArgs e)
        {
            stringsToFind=barcodedata.Text;
            pathtofile = "C:\\" + StringTool.Truncate(barcodedata.Text, 5) + ".pdf";
            jobnumberdata.Text = StringTool.Truncate(barcodedata.Text, 5);
        }

        private void label4_Click(object sender, EventArgs e)
        {

        }

        private void jobnumberdata_TextChanged(object sender, EventArgs e)
        {
            jobnumberdata.Text = jobnumberdata.Text.TrimStart('0');
            Console.WriteLine(jobnumberdata.Text);
        }

        private void startpagedata_TextChanged(object sender, EventArgs e)
        {
            Console.WriteLine(startpagedata.Text);
        }

        private void piecesdata_TextChanged(object sender, EventArgs e)
        {
        }

        private void FindIt_Click(object sender, EventArgs e)
        {
            PdfDocument pdf = new PdfDocument(pathtofile);
            for (int i = 0; i < pdf.Pages.Count; i++)
            {
                string pageText = pdf.Pages[i].GetText();
                int count = 0;
                int lastStartIndex = pageText.IndexOf(stringsToFind, 0, StringComparison.CurrentCultureIgnoreCase);
                while (lastStartIndex != -1)
                {
                    count++;
                    lastStartIndex = pageText.IndexOf(stringsToFind, lastStartIndex + 1, StringComparison.CurrentCultureIgnoreCase);
                }

                if (count != 0)
                    startpagedata.Text = Convert.ToString(lastStartIndex);
            }

        }
    }

    public static class StringTool
    {
        /// <summary>
        /// Get a substring of the first N characters.
        /// </summary>
        public static string Truncate(string source, int length)
        {
            if (source.Length > length)
            {
                source = source.Substring(0, length);
            }
            return source;
        }

        /// <summary>
        /// Get a substring of the first N characters. [Slow]
        /// </summary>
        public static string Truncate2(string source, int length)
        {
            return source.Substring(0, Math.Min(length, source.Length));
        }
    }
}
4

2 回答 2

1

这段代码有什么问题?如果 FindIt_Click 未在单击时执行,则可能您没有将其与“查找”按钮相关联。

FindIt_Click 中的代码看起来很正确,除了以下几点:

  • 它可能无法达到您的预期。它返回找到搜索字符串的最后一页文本中的最后一个索引。但是您可能期望找到搜索字符串的最后一页的索引吗?
  • 您可以使用pageText.LastIndexOf方法快速找到lastStartIndex
  • 不要忘记 Dispose PdfDocument 实例。例如使用using关键字:
    使用 (PdfDocument pdf = new PdfDocument(pathtofile))
    {
    ...
    }
于 2013-03-02T03:44:24.760 回答
0

为了使用Docotic.pdf你可以使用Acrobat.dll来查找当前页码。首先打开pdf文件并使用搜索字符串

Acroavdoc.open("Filepath","Temperory title") 

Acroavdoc.FindText("String").

如果在此 pdf 文件中找到字符串,则光标移动到特定页面,搜索到的字符串将突出显示。现在我们Acroavpageview.GetPageNum()用来获取当前页码。

Dim AcroXAVDoc As CAcroAVDoc
Dim Acroavpage As AcroAVPageView
Dim AcroXApp As CAcroApp

AcroXAVDoc = CType(CreateObject("AcroExch.AVDoc"), Acrobat.CAcroAVDoc)
AcroXApp = CType(CreateObject("AcroExch.App"), Acrobat.CAcroApp)

AcroXAVDoc.Open("File path", "Original document")
AcroXAVDoc.FindText("String is to searched", True, True, False)

Acroavpage = AcroXAVDoc.GetAVPageView()

Dim x As Integer = Acroavpage.GetPageNum
MsgBox("the string found in page number" & x) 
于 2013-04-23T12:03:25.560 回答