Program.cs
上传用户:zhangkuixh
上传日期:2013-09-30
资源大小:5473k
文件大小:2k
源码类别:

搜索引擎

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. /*
  5.       '       迅龙中文分类搜索引擎  v0.6
  6.       '
  7.       '        LGPL  许可发行
  8.       '
  9.       '       宁夏大学  张冬 康彩  zd4004@163.com
  10.       ' 
  11.       '        官网 http://blog.163.com/zd4004/
  12.  */
  13. //自动模版采样  选出其中 相似数量多于 200 的页面的特征
  14. namespace XunLong.binAutoModelTeam
  15. {
  16.     class Program
  17.     {
  18.         static void Main(string[] args)
  19.         {
  20.             Console.WriteLine("  >------------------------------------------<");
  21.             Console.WriteLine("  >------------------------------------------<");
  22.             Console.WriteLine("  >          列表中文搜索引擎_组件v0.3       <");
  23.             Console.WriteLine("  >               自动队列识别               <");
  24.             Console.WriteLine("  >------------------------------------------<");
  25.             Console.WriteLine("  >------------------------------------------<");
  26.             string k_c_path = args[0];
  27.             Console.WriteLine("--》加载配置文件: " + k_c_path);
  28.             XunLong.CongifData.Config.InitConfigData(k_c_path);
  29.             //D:XunLongXunLong.BINSpiderWEB  文件系统路径
  30.             string a = XunLong.CongifData.Config.SpiderData;
  31.             string b = AppDomain.CurrentDomain.BaseDirectory + "\modelSource.dat";
  32.              b = XunLong.CongifData.Config.modelSource;
  33.             ClassCaiYang x = new ClassCaiYang();
  34.             x.Init(a, b, k_c_path);
  35.             x.Run();
  36.             Console.ReadKey();
  37.             Console.ReadKey();
  38.         }
  39.     }
  40. }