GetDocumentText

GetDocumentText(DocumentInfo, OutputAdapter)

インデックス付きドキュメントの HTML 形式のテキストを生成し、出力アダプターを介して転送します。

public void GetDocumentText(DocumentInfo documentInfo, OutputAdapter adapter)
パラメータ タイプ 説明
documentInfo DocumentInfo 索引付けされた文書情報。
adapter OutputAdapter 出力アダプター。

この例は、インデックスからインデックス付きドキュメントのテキストを取得する方法を示しています.

string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
 
// 指定したフォルダにインデックスを作成
Index index = new Index(indexFolder);
 
// 指定されたフォルダからのドキュメントのインデックス作成
index.Add(documentsFolder);
 
// 索引付けされたドキュメントのリストを取得
DocumentInfo[] documents = index.GetIndexedDocuments();
 
// ドキュメントのテキストを取得する
if (documents.Length > 0)
{
    FileOutputAdapter outputAdapter = new FileOutputAdapter(@"C:\Text.html");
    index.GetDocumentText(documents[0], outputAdapter);
}

関連項目


GetDocumentText(DocumentInfo, OutputAdapter, TextOptions)

インデックス付きドキュメントの HTML 形式のテキストを生成し、出力アダプターを介して転送します。

public void GetDocumentText(DocumentInfo documentInfo, OutputAdapter adapter, TextOptions options)
パラメータ タイプ 説明
documentInfo DocumentInfo 索引付けされた文書情報。
adapter OutputAdapter 出力アダプター。
options TextOptions テキスト取得オプション。

関連項目