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

搜索引擎

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Collections;
  5. namespace XunLong.IndexBuilder
  6. {
  7.     /*
  8.          '       迅龙中文分类搜索引擎  v0.6
  9.          '
  10.          '        LGPL  许可发行
  11.          '
  12.          '       宁夏大学  张冬 康彩  zd4004@163.com
  13.          ' 
  14.          '        官网 http://blog.163.com/zd4004/
  15.     */
  16.         /// <summary>
  17.         /// 静态的文件系统
  18.         /// </summary>
  19.         public static class ClassFileSystemIt
  20.         {
  21.             /// <summary>
  22.             /// 定义存储类
  23.             /// </summary>
  24.             private static NetHashTableAPI.ClassNHT myDB = new NetHashTableAPI.ClassNHT();
  25.             public static void SetClassNHT(string dir, int size, string k_c_path)
  26.             {
  27.                 //  设置文件系统
  28.                 myDB.SetClassNHT(dir, 3145727, k_c_path);
  29.             }
  30.             /// <summary>
  31.             /// 得到文件列表
  32.             /// </summary>
  33.             /// <param name="txt"></param>
  34.             /// <returns></returns>
  35.             public static ArrayList SearchOneList(string txt)
  36.             {
  37.                 return myDB.SearchOneList("http://");
  38.             }
  39.             /// <summary>
  40.             /// 得到值
  41.             /// </summary>
  42.             /// <param name="key"></param>
  43.             /// <returns></returns>
  44.             public static string Value(string key)
  45.             {
  46.                 try
  47.                 {
  48.                     return myDB.Value(key);
  49.                 }
  50.                 catch
  51.                 {
  52.                     return "";
  53.                 }
  54.             }
  55.         }
  56.     
  57. }