客户端的html文件加密

时间:2012-10-01 18:50:34

标签: java swing lucene swingutilities

我在搜索关键字之后使用lucene在客户端进行索引和搜索我想在那里显示html文件。那么有没有办法存储和访问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文件

1 个答案:

答案 0 :(得分:3)

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