我在搜索要在其中显示html文件的关键字后,在客户端使用lucene进行索引和搜索。有什么办法可以存储和访问html文件。实际上,html文件存储的是图像和链接,它们应该像普通html文件一样在java api中打开。
我正在使用以下代码进行lucene索引

  try
  {

        IndexWriter indexWriter = new IndexWriter(

        FSDirectory.open(indexDir),

        new SimpleAnalyzer(),

        true,
        IndexWriter.MaxFieldLength.LIMITED);
        indexWriter.setUseCompoundFile(false);
        indexDirectory(indexWriter, dataDir, suffix);

        Document doc = new Document();

        doc.add(new Field("contents", new FileReader(f)));

        doc.add(new Field("filename",f.getCanonicalPath(),

        Field.Store.YES,Field.Index.ANALYZED));
        indexWriter.addDocument(doc);

        numIndexed = indexWriter.maxDoc();

        indexWriter.optimize();

        indexWriter.close();

        }

        catch(Exception ex)
        {
        }


我应如何在客户端显示与搜索条件匹配的html文件

最佳答案

您可能正在寻找browse(),它“启动默认浏览器以显示URI”。或者,可以使用editor pane,尽管支持为limited

09-28 12:34