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

搜索引擎

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Windows.Forms;
  4. using System.Threading;
  5. /*
  6.       '       迅龙中文分类搜索引擎  v0.6
  7.       '
  8.       '        LGPL  许可发行
  9.       '
  10.       '       宁夏大学  张冬 康彩  zd4004@163.com
  11.       ' 
  12.       '        官网 http://blog.163.com/zd4004/
  13.  */
  14. namespace XunLong.NewXWord
  15. {
  16.     static class Program
  17.     {
  18.         /// <summary>
  19.         /// 应用程序的主入口点。
  20.         /// </summary>
  21.         static void Main(string[] args)
  22.         {
  23.             Console.WriteLine("  >------------------------------------------<");
  24.             Console.WriteLine("  >------------------------------------------<");
  25.             Console.WriteLine("  >          列表中文搜索引擎_组件v0.3       <");
  26.             Console.WriteLine("  >                 分词缓存                 <");
  27.             Console.WriteLine("  >------------------------------------------<");
  28.             Console.WriteLine("  >------------------------------------------<");
  29.             string k_c_path = args[0];
  30.             Console.WriteLine("--》加载配置文件: " + k_c_path);
  31.             XunLong.CongifData.Config.InitConfigData(k_c_path);
  32.             ClassRunIt newIt = new ClassRunIt();
  33.             Thread T0 = new Thread(new ThreadStart(newIt.StartListen));
  34.             T0.Start();
  35.             Console.WriteLine("目录服务启动");
  36.             Console.WriteLine("任意键退出");
  37.             Console.ReadKey();
  38.             Console.WriteLine("感谢使用 任意键退出");
  39.             Console.ReadKey();
  40.             newIt.isListen = false;
  41.             T0.Abort();
  42.         }
  43.     }
  44. }