Program.cs
上传用户:zhangkuixh
上传日期:2013-09-30
资源大小:5473k
文件大小:2k
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace XunLong.AutoModelBuilder
- {
- /*
- ' 迅龙中文分类搜索引擎 v0.6
- '
- ' LGPL 许可发行
- '
- ' 宁夏大学 张冬 康彩 zd4004@163.com
- '
- ' 官网 http://blog.163.com/zd4004/
- */
- class Program
- {
- /// <summary>
- /// D:XunLongXunLong.BINSpiderWEB D:XunLongXunLong.BINModelDATAnew D:XunLongXunLong.BINModelDATAnew
- /// </summary>
- /// <param name="args"></param>
- static void Main(string[] args)
- {
- Console.WriteLine(" >------------------------------------------<");
- Console.WriteLine(" >------------------------------------------<");
- Console.WriteLine(" > 列表中文搜索引擎_组件v0.6 <");
- Console.WriteLine(" > 模版生成 <");
- Console.WriteLine(" >------------------------------------------<");
- Console.WriteLine(" >------------------------------------------<");
- string k_c_path = args[0];
- Console.WriteLine("--》加载配置文件: " + k_c_path);
- XunLong.CongifData.Config.InitConfigData(k_c_path);
- //D:XunLongXunLong.BINSpiderWEB 文件系统路径
- string a = XunLong.CongifData.Config.SpiderData;
-
- // 模版文件路径 D:XunLongXunLong.BINModelDATA
- string b = XunLong.CongifData.Config.ModelData;
- // 要生成的模版文件路径 D:XunLongXunLong.BINModelDATAnew
- string c = XunLong.CongifData.Config.NewModelData;
- AutoBuildModelClass x = new AutoBuildModelClass();
- x.Init(a, b, c, k_c_path);
- x.Run();
- Console.ReadKey();
- Console.ReadKey();
- }
- }
- }