Program.cs
上传用户:zhangkuixh
上传日期:2013-09-30
资源大小:5473k
文件大小:2k
- using System;
- using System.Collections.Generic;
- using System.Text;
- /*
- ' 迅龙中文分类搜索引擎 v0.6
- '
- ' LGPL 许可发行
- '
- ' 宁夏大学 张冬 康彩 zd4004@163.com
- '
- ' 官网 http://blog.163.com/zd4004/
- */
- //自动模版采样 选出其中 相似数量多于 200 的页面的特征
- namespace XunLong.binAutoModelTeam
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine(" >------------------------------------------<");
- Console.WriteLine(" >------------------------------------------<");
- Console.WriteLine(" > 列表中文搜索引擎_组件v0.3 <");
- 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;
- string b = AppDomain.CurrentDomain.BaseDirectory + "\modelSource.dat";
- b = XunLong.CongifData.Config.modelSource;
- ClassCaiYang x = new ClassCaiYang();
- x.Init(a, b, k_c_path);
- x.Run();
- Console.ReadKey();
- Console.ReadKey();
- }
- }
- }