在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → c# 开源搜索引擎完整的例子

c# 开源搜索引擎完整的例子

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:1.94M
  • 下载次数:4
  • 浏览次数:134
  • 发布时间:2021-01-23
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
一个不错的c# 开源搜索引擎完整的例子,含有全部源代码。
【实例截图】
【核心代码】
36ab807b-2256-4ce8-a1df-5143b2d44b8a
└── jin890
├── 1
│   ├── ClearBuildingObjects.bat
│   ├── lib
│   │   ├── antlr.runtime.dll
│   │   ├── Highlighter.Net.dll
│   │   ├── HtmlLib.dll
│   │   ├── log4net.dll
│   │   ├── Lucene.Net.dll
│   │   └── StringTemplate.dll
│   ├── LinearHtml.css
│   ├── mssccprj.scc
│   ├── ShootSearch.Common
│   │   ├── Config.cs
│   │   ├── HighResolutionTimer.cs
│   │   ├── HtmlParser
│   │   │   ├── Attribute.cs
│   │   │   ├── AttributeList.cs
│   │   │   ├── Parse.cs
│   │   │   ├── PhraseHTML.cs
│   │   │   └── vssver2.scc
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   └── ResolveAssemblyReference.cache
│   │   │   └── ShootSearch.Common.csproj.FileListAbsolute.txt
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── vssver2.scc
│   │   ├── ShootSearch.Common.csproj
│   │   ├── ShootSearch.Common.csproj.user
│   │   ├── ShootSearch.Common.csproj.vspscc
│   │   ├── Tools.cs
│   │   ├── vssver2.scc
│   │   ├── XMLConsole.cs
│   │   └── XMLSettings.cs
│   ├── ShootSearch.IFilter
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── ShootSearch.IFilter.dll
│   │   │   └── ShootSearch.IFilter.pdb
│   │   ├── Filter.cs
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ShootSearch.IFilter.dll
│   │   │   │   └── ShootSearch.IFilter.pdb
│   │   │   └── ShootSearch.IFilter.csproj.FileListAbsolute.txt
│   │   ├── Parser.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── vssver2.scc
│   │   ├── ShootSearch.IFilter.csproj
│   │   ├── ShootSearch.IFilter.csproj.user
│   │   ├── ShootSearch.IFilter.csproj.vspscc
│   │   └── vssver2.scc
│   ├── ShootSearch.Indexer
│   │   ├── AlphabeticComparer.cs
│   │   ├── Indexing.cs
│   │   ├── IndexItem.cs
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── build.force
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── ShootSearch.Indexer.csproj.GenerateResource.Cache
│   │   │   │   └── ShootSearch.Indexer.UCSettings.resources
│   │   │   └── ShootSearch.Indexer.csproj.FileListAbsolute.txt
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── vssver2.scc
│   │   ├── Settings.cs
│   │   ├── ShootSearch.Indexer.csproj
│   │   ├── ShootSearch.Indexer.csproj.vspscc
│   │   ├── UCSettings.cs
│   │   ├── UCSettings.Designer.cs
│   │   ├── UCSettings.resx
│   │   └── vssver2.scc
│   ├── ShootSearch.Indexer.Tester
│   │   ├── frmMain.cs
│   │   ├── frmMain.Designer.cs
│   │   ├── frmMain.resx
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── ShootSearch.Indexer.Tester.csproj.GenerateResource.Cache
│   │   │   │   ├── ShootSearch.Indexer.Tester.frmMain.resources
│   │   │   │   └── ShootSearch.Indexer.Tester.Properties.Resources.resources
│   │   │   └── ShootSearch.Indexer.Tester.csproj.FileListAbsolute.txt
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   ├── Settings.settings
│   │   │   └── vssver2.scc
│   │   ├── ShootSearch.Indexer.Tester.csproj
│   │   ├── ShootSearch.Indexer.Tester.csproj.vspscc
│   │   └── vssver2.scc
│   ├── ShootSearch.Logger
│   │   ├── App.config
│   │   ├── Log.cs
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   └── ShootSearch.Logger.csproj.FileListAbsolute.txt
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── vssver2.scc
│   │   ├── ShootSearch.Logger.csproj
│   │   ├── ShootSearch.Logger.csproj.vspscc
│   │   └── vssver2.scc
│   ├── ShootSearch.Mirror
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── ShootSearch.Mirror.csproj.GenerateResource.Cache
│   │   │   │   └── ShootSearch.Mirror.UCSettings.resources
│   │   │   └── ShootSearch.Mirror.csproj.FileListAbsolute.txt
│   │   ├── Processor.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── vssver2.scc
│   │   ├── Settings.cs
│   │   ├── ShootSearch.Mirror.csproj
│   │   ├── ShootSearch.Mirror.csproj.user
│   │   ├── ShootSearch.Mirror.csproj.vspscc
│   │   ├── UCSettings.cs
│   │   ├── UCSettings.Designer.cs
│   │   ├── UCSettings.resx
│   │   ├── Util.cs
│   │   ├── vssver2.scc
│   │   └── Worker.cs
│   ├── ShootSearch.Mirror.Tester
│   │   ├── App.config
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Settings
│   │   │   │   │   ├── Index.xml
│   │   │   │   │   ├── Process.xml
│   │   │   │   │   ├── SmartGet_cnblogs.xml
│   │   │   │   │   ├── SmartGet_csdnblog.xml
│   │   │   │   │   ├── SmartRemove.xml
│   │   │   │   │   ├── SmartReplace.xml
│   │   │   │   │   ├── Spider.xml
│   │   │   │   │   └── Task.xml
│   │   │   │   └── Templates
│   │   │   │   └── csdnblog.tp
│   │   │   └── Release
│   │   │   ├── Settings
│   │   │   │   ├── Index.xml
│   │   │   │   ├── Process.xml
│   │   │   │   ├── SmartGet_cnblogs.xml
│   │   │   │   ├── SmartGet_csdnblog.xml
│   │   │   │   ├── SmartRemove.xml
│   │   │   │   ├── SmartReplace.xml
│   │   │   │   ├── Spider.xml
│   │   │   │   └── Task.xml
│   │   │   └── Templates
│   │   │   └── csdnblog.tp
│   │   ├── frmMain.cs
│   │   ├── frmMain.Designer.cs
│   │   ├── frmMain.resx
│   │   ├── frmRegex.cs
│   │   ├── frmRegex.Designer.cs
│   │   ├── frmRegex.resx
│   │   ├── frmTools.cs
│   │   ├── frmTools.Designer.cs
│   │   ├── frmTools.resx
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ShootSearch.Mirror.Tester.csproj.GenerateResource.Cache
│   │   │   │   ├── ShootSearch.Mirror.Tester.frmMain.resources
│   │   │   │   ├── ShootSearch.Mirror.Tester.frmRegex.resources
│   │   │   │   ├── ShootSearch.Mirror.Tester.frmTools.resources
│   │   │   │   └── ShootSearch.Mirror.Tester.Properties.Resources.resources
│   │   │   └── ShootSearch.Mirror.Tester.csproj.FileListAbsolute.txt
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   ├── Settings.settings
│   │   │   └── vssver2.scc
│   │   ├── ShootSearch.Mirror.Tester.csproj
│   │   ├── ShootSearch.Mirror.Tester.csproj.vspscc
│   │   └── vssver2.scc
│   ├── ShootSearch NameSpace List.html
│   ├── ShootSearch.ndoc
│   ├── ShootSearch.Plugin
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   └── ShootSearch.Plugin.csproj.FileListAbsolute.txt
│   │   ├── Plugin.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── vssver2.scc
│   │   ├── ShootSearch.Plugin.csproj
│   │   ├── ShootSearch.Plugin.csproj.vspscc
│   │   └── vssver2.scc
│   ├── ShootSearch.Plugin.HTML
│   │   ├── HTMLParser.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── ShootSearch.Plugin.HTML.csproj
│   ├── ShootSearch.Plugin.RTF
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   └── ShootSearch.Plugin.RTF.csproj.FileListAbsolute.txt
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── vssver2.scc
│   │   ├── RTFParser.cs
│   │   ├── ShootSearch.Plugin.RTF.csproj
│   │   ├── ShootSearch.Plugin.RTF.csproj.vspscc
│   │   └── vssver2.scc
│   ├── ShootSearch.Searcher
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   └── ResolveAssemblyReference.cache
│   │   │   └── ShootSearch.Searcher.csproj.FileListAbsolute.txt
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── vssver2.scc
│   │   ├── ShootSearcher.cs
│   │   ├── ShootSearch.Searcher.csproj
│   │   ├── ShootSearch.Searcher.csproj.vspscc
│   │   ├── Util.cs
│   │   └── vssver2.scc
│   ├── ShootSearch.Searcher.Web
│   │   ├── App_Code
│   │   │   ├── Assist.cs
│   │   │   └── vssver2.scc
│   │   ├── Bin
│   │   │   └── vssver2.scc
│   │   ├── _Default.aspx
│   │   ├── _Default.aspx.cs
│   │   ├── main.css
│   │   ├── Manage.aspx
│   │   ├── Manage.aspx.cs
│   │   ├── vssver2.scc
│   │   └── Web.Config
│   ├── ShootSearch.Searcher.Windows
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Highlighter.Net.dll
│   │   │   │   ├── log4net.dll
│   │   │   │   ├── Lucene.Net.dll
│   │   │   │   ├── ShootSearch.Common.dll
│   │   │   │   ├── ShootSearch.Common.pdb
│   │   │   │   ├── ShootSearch.Logger.dll
│   │   │   │   ├── ShootSearch.Logger.pdb
│   │   │   │   ├── ShootSearch.Searcher.dll
│   │   │   │   ├── ShootSearch.Searcher.pdb
│   │   │   │   ├── ShootSearch.Searcher.Windows.exe
│   │   │   │   ├── ShootSearch.Searcher.Windows.pdb
│   │   │   │   └── ShootSearch.Searcher.Windows.vshost.exe
│   │   │   └── Release
│   │   │   ├── Highlighter.Net.dll
│   │   │   ├── log4net.dll
│   │   │   ├── Lucene.Net.dll
│   │   │   ├── ShootSearch.Common.dll
│   │   │   ├── ShootSearch.Common.pdb
│   │   │   ├── ShootSearch.Common.xml
│   │   │   ├── ShootSearch.Logger.dll
│   │   │   ├── ShootSearch.Logger.pdb
│   │   │   ├── ShootSearch.Logger.xml
│   │   │   ├── ShootSearch.Searcher.dll
│   │   │   ├── ShootSearch.Searcher.pdb
│   │   │   ├── ShootSearch.Searcher.Windows.exe
│   │   │   ├── ShootSearch.Searcher.Windows.pdb
│   │   │   ├── ShootSearch.Searcher.Windows.XML
│   │   │   └── ShootSearch.Searcher.xml
│   │   ├── frmMain.cs
│   │   ├── frmMain.Designer.cs
│   │   ├── frmMain.resx
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── ShootSearch.Searcher.Windows.csproj.GenerateResource.Cache
│   │   │   │   ├── ShootSearch.Searcher.Windows.frmMain.resources
│   │   │   │   └── ShootSearch.Searcher.Windows.Properties.Resources.resources
│   │   │   └── ShootSearch.Searcher.Windows.csproj.FileListAbsolute.txt
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   ├── Settings.settings
│   │   │   └── vssver2.scc
│   │   ├── ShootSearch.Searcher.Windows.csproj
│   │   ├── ShootSearch.Searcher.Windows.csproj.vspscc
│   │   └── vssver2.scc
│   ├── ShootSearch.Segment
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── ShootSearch.Segment.dll
│   │   │   └── ShootSearch.Segment.pdb
│   │   ├── Class1.cs
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ShootSearch.Segment.dll
│   │   │   │   └── ShootSearch.Segment.pdb
│   │   │   └── ShootSearch.Segment.csproj.FileListAbsolute.txt
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── vssver2.scc
│   │   ├── ShootSearch.Segment.csproj
│   │   ├── ShootSearch.Segment.csproj.vspscc
│   │   └── vssver2.scc
│   ├── ShootSearch.sln
│   ├── ShootSearch.Spider
│   │   ├── DownloadEvent.cs
│   │   ├── Http
│   │   │   ├── Manager.cs
│   │   │   ├── URL.cs
│   │   │   ├── vssver2.scc
│   │   │   └── Worker.cs
│   │   ├── ISpiderMan.cs
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── ShootSearch.Spider.csproj.GenerateResource.Cache
│   │   │   │   └── ShootSearch.Spider.UCSettings.resources
│   │   │   └── ShootSearch.Spider.csproj.FileListAbsolute.txt
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── vssver2.scc
│   │   ├── Settings.cs
│   │   ├── ShootSearch.Spider.csproj
│   │   ├── ShootSearch.Spider.csproj.vspscc
│   │   ├── UCSettings.cs
│   │   ├── UCSettings.Designer.cs
│   │   ├── UCSettings.resx
│   │   ├── Util.cs
│   │   └── vssver2.scc
│   ├── ShootSearch.Spider.Console
│   │   ├── App.config
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Settings
│   │   │   │   │   ├── Index.xml
│   │   │   │   │   ├── Process.xml
│   │   │   │   │   ├── SmartGet_cnblogs.xml
│   │   │   │   │   ├── SmartGet_csdnblog.xml
│   │   │   │   │   ├── SmartRemove.xml
│   │   │   │   │   ├── SmartReplace.xml
│   │   │   │   │   ├── Spider.xml
│   │   │   │   │   └── Task.xml
│   │   │   │   ├── ShootSearch.Spider.Console.exe.config
│   │   │   │   ├── ShootSearch.Spider.Console.vshost.exe
│   │   │   │   ├── ShootSearch.Spider.Console.vshost.exe.config
│   │   │   │   └── Templates
│   │   │   │   └── csdnblog.tp
│   │   │   └── Release
│   │   │   ├── Settings
│   │   │   │   ├── Index.xml
│   │   │   │   ├── Process.xml
│   │   │   │   ├── SmartGet_cnblogs.xml
│   │   │   │   ├── SmartGet_csdnblog.xml
│   │   │   │   ├── SmartRemove.xml
│   │   │   │   ├── SmartReplace.xml
│   │   │   │   ├── Spider.xml
│   │   │   │   └── Task.xml
│   │   │   └── Templates
│   │   │   └── csdnblog.tp
│   │   ├── frmMain.cs
│   │   ├── frmMain.Designer.cs
│   │   ├── frmMain.resx
│   │   ├── frmTask.cs
│   │   ├── frmTask.Designer.cs
│   │   ├── frmTask.resx
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── ShootSearch.Spider.Console.csproj.GenerateResource.Cache
│   │   │   │   ├── ShootSearch.Spider.Console.frmMain.resources
│   │   │   │   ├── ShootSearch.Spider.Console.frmTask.resources
│   │   │   │   └── ShootSearch.Spider.Console.Properties.Resources.resources
│   │   │   └── ShootSearch.Spider.Console.csproj.FileListAbsolute.txt
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.cs
│   │   │   ├── Settings.Designer.cs
│   │   │   ├── Settings.settings
│   │   │   └── vssver2.scc
│   │   ├── ShootSearch.Spider.Console.csproj
│   │   ├── ShootSearch.Spider.Console.csproj.user
│   │   ├── ShootSearch.Spider.Console.csproj.vspscc
│   │   ├── the-whole-net-work.ico
│   │   └── vssver2.scc
│   ├── ShootSearch.suo
│   ├── ShootSearch.UserControl
│   │   ├── frmSettings.cs
│   │   ├── frmSettings.Designer.cs
│   │   ├── frmSettings.resx
│   │   ├── mssccprj.scc
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── ShootSearch.UserControl.csproj.GenerateResource.Cache
│   │   │   │   └── ShootSearch.UserControl.frmSettings.resources
│   │   │   └── ShootSearch.UserControl.csproj.FileListAbsolute.txt
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── vssver2.scc
│   │   ├── ShootSearch.UserControl.csproj
│   │   ├── ShootSearch.UserControl.csproj.vspscc
│   │   └── vssver2.scc
│   ├── ShootSearch.vssscc
│   ├── ShootSearch说明书.doc
│   └── What's news.txt
├── 2
│   ├── antlr.runtime.dll
│   ├── HtmlLib.dll
│   ├── log4net.dll
│   ├── Lucene.Net.dll
│   ├── Settings
│   │   ├── Index.xml
│   │   ├── Process.xml
│   │   ├── SmartGet_cnblogs.xml
│   │   ├── SmartGet_csdnblog.xml
│   │   ├── SmartRemove.xml
│   │   ├── SmartReplace.xml
│   │   ├── Spider.xml
│   │   └── Task.xml
│   ├── ShootSearch.Common.dll
│   ├── ShootSearch.Common.pdb
│   ├── ShootSearch.IFilter.dll
│   ├── ShootSearch.IFilter.pdb
│   ├── ShootSearch.Indexer.dll
│   ├── ShootSearch.Indexer.pdb
│   ├── ShootSearch.Logger.dll
│   ├── ShootSearch.Logger.pdb
│   ├── ShootSearch.Mirror.dll
│   ├── ShootSearch.Mirror.pdb
│   ├── ShootSearch.Plugin.dll
│   ├── ShootSearch.Plugin.pdb
│   ├── ShootSearch.Spider.Console.exe
│   ├── ShootSearch.Spider.Console.exe.config
│   ├── ShootSearch.Spider.Console.pdb
│   ├── ShootSearch.Spider.Console.vshost.exe
│   ├── ShootSearch.Spider.Console.vshost.exe.config
│   ├── ShootSearch.Spider.dll
│   ├── ShootSearch.Spider.pdb
│   ├── ShootSearch.UserControl.dll
│   ├── ShootSearch.UserControl.pdb
│   ├── StringTemplate.dll
│   └── Templates
│   └── csdnblog.tp
└── 系统说明.txt

91 directories, 373 files

标签:

实例下载地址

c# 开源搜索引擎完整的例子

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警