我想用vb实现对pdf文件的全文检索
那位高人能指点一下啊

解决方案 »

  1.   

    你这个PDF应该是包含了全文信息的PDF(有些是没有的,全文信息由一些OCR识别引擎识别出来),一些OCR to PDF专业厂商(文通应该由Tif To PDF的SDK)应该可能提供了相应全文检索的东西。另外国内比较知名的全文检索供应商TBS、TRS应该也可以处理。
      

  2.   

    trs 应该是可以实现这个功能我的意思是acrobat reader 7.0 中自带了一个“搜索”的功能,这个检索就可以对硬盘上的pdf文件进行全文检索,如果能实现这样的功能就行了。
      

  3.   

    Search Extended API
    The Adobe Acrobat Search plug-in allows users to perform text searches in PDF documents. It adds menus, menu items, toolbar button, and a Search panel to the Acrobat viewer.
    The Search plug-in exports a Host Function Table (HFT) containing several methods that can be used by other plug-ins.
    The HFT’s name is Search, and its version number is 0. To use the Search plug-in’s HFT, a plug-in must include the header file SrchClls.h. The plug-in must also import the HFT using ASExtensionMgrGetHFT and assign the HFT returned by this call to a plug-in-defined global variable named gSearchHFT.
    Acrobat 6.0 and later has two versions of the Search plug-in, Search (new in Acrobat 6.0) and Search5 (also available in Acrobat 5.0).
    ●The Search plug-in uses a search engine licensed from Lextek International. Lextek can be contacted at http://www.lextek.com.
    ●The Search5 plug-in uses a search engine licensed from Verity, Inc. Verity can be contacted at http://www.verity.com.
    You can do the following with either version of the Search plug-in:
    –Create or delete indexes
    Search Extended API
    4
    194 Acrobat and PDF Library API Overview
    –Ask what indexes are available
    –Send queries to an existing index
    You cannot use either version of the Search plug-in to directly obtain the results of a search, for manipulation or for display in an application other than Adobe Acrobat.
    Search supports interapplication communication (IAC) in the form of Apple events on the Macintosh and DDE messages under the Windows® operating system. These Apple events and DDE messages allow remote clients to submit search queries and manipulate a list of indexes (the list of indexes is referred to as the shelf).
    Search DDE
    This technical note describes the Search HFT. The IAC APIs supported by the Acrobat Search plug-in are described in the Acrobat IAC Overview and the Acrobat IAC Reference.
    Search APIs
    The Search APIs include:
    SearchAddIndex
    SearchAddIndexEx
    SearchCountIndexList
    SearchExecuteQuery
    SearchExecuteQueryEx
    SearchGetIndexByPath
    SearchGetIndexByPathEx
    SearchGetIndexFlags
    SearchGetIndexList
    SearchGetIndexPath
    SearchGetIndexPathEx
    SearchGetIndexFileSys
    SearchGetIndexTitle
    SearchGetIndexTitleEx
    SearchGetNthIndex
    SearchIsLegacySearchAvailable
    SearchRemoveIndex
    SearchSetIndexFlags
      

  4.   

    我的意思是acrobat reader 7.0 中自带了一个“搜索”的功能,这个检索就可以对硬盘上的pdf文件进行全文检索,如果能实现这样的功能就行了。=============>
    我有这样的com组件,可以搜索硬盘上的pdf文件
    [email protected]