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

搜索引擎

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace XunLong.AutoModelBuilder
  5. {
  6.     /*
  7.           '       迅龙中文分类搜索引擎  v0.6
  8.           '
  9.           '        LGPL  许可发行
  10.           '
  11.           '       宁夏大学  张冬 康彩  zd4004@163.com
  12.           ' 
  13.           '        官网 http://blog.163.com/zd4004/
  14.      */
  15.     class Program
  16.     {
  17.         /// <summary>
  18.         /// D:XunLongXunLong.BINSpiderWEB D:XunLongXunLong.BINModelDATAnew D:XunLongXunLong.BINModelDATAnew
  19.         /// </summary>
  20.         /// <param name="args"></param>
  21.         static void Main(string[] args)
  22.         {
  23.             Console.WriteLine("  >------------------------------------------<");
  24.             Console.WriteLine("  >------------------------------------------<");
  25.             Console.WriteLine("  >          列表中文搜索引擎_组件v0.6       <");
  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.             //D:XunLongXunLong.BINSpiderWEB  文件系统路径
  33.             string a = XunLong.CongifData.Config.SpiderData;
  34.           
  35.             // 模版文件路径  D:XunLongXunLong.BINModelDATA
  36.             string b = XunLong.CongifData.Config.ModelData;
  37.             // 要生成的模版文件路径 D:XunLongXunLong.BINModelDATAnew
  38.             string c = XunLong.CongifData.Config.NewModelData;
  39.             AutoBuildModelClass x = new AutoBuildModelClass();
  40.             x.Init(a, b, c, k_c_path);
  41.             x.Run();
  42.             Console.ReadKey();
  43.             Console.ReadKey();
  44.         }
  45.     }
  46. }