IFieldExtractor

IFieldExtractor interface

يوفر طرقًا لاستخراج الحقول من مستند.

public interface IFieldExtractor

الخصائص

اسم وصف
Extensions { get; } يحصل على الامتدادات المدعومة.

طُرق

اسم وصف
GetFields(Stream) استخراج كافة الحقول من المستند المحدد.
GetFields(string) استخراج كافة الحقول من المستند المحدد.

ملاحظات

يتعلم أكثر

أمثلة

يوضح المثال كيفية تنفيذ الواجهةIFieldExtractor .

public class LogExtractor : IFieldExtractor
{
    private readonly string[] extensions = new string[] { ".log" };

    public string[] Extensions
    {
        get { return extensions; }
    }

    public DocumentField[] GetFields(string filePath)
    {
        FileInfo fileInfo = new FileInfo(filePath);
        DocumentField[] fields = new DocumentField[]
        {
            new DocumentField("FileName", fileInfo.FullName),
            new DocumentField("CreationDate", fileInfo.CreationTime.ToString(CultureInfo.InvariantCulture)),
            new DocumentField("Content", ExtractContent(filePath)),
        };
        return fields;
    }

    private string ExtractContent(string filePath)
    {
        StringBuilder result = new StringBuilder();
        using (StreamReader streamReader = File.OpenText(filePath))
        {
            string line = streamReader.ReadLine();
            string processedLine = line.Remove(0, 12);
            result.AppendLine(processedLine);
        }
        return result.ToString();
    }
}

يوضح المثال كيفية استخدام مستخرج الكاستورم للفهرسة.

string indexFolder = @"c:\MyIndex\"; // حدد مسار مجلد الفهرس
string documentsFolder = @"c:\MyDocuments\"; // حدد مسار مجلد يحتوي على وثائق للبحث

Index index = new Index(indexFolder); // إنشاء أو تحميل فهرس

index.IndexSettings.CustomExtractors.Add(new LogExtractor()); // إضافة مستخرج نص مخصص إلى إعدادات الفهرسة

index.Add(documentsFolder); // فهرسة المستندات من المجلد المحدد

أنظر أيضا