使用NetBeans IDE实现JavaHelp搜索

时间:2013-04-28 12:01:05

标签: java netbeans javahelp

我已经集成了javahelp在线文档  使用NetBeans IDE进入我的桌面应用程序。  我也有主题文件和导航文件。  没有安装javahelp文件夹而是bin文件  从文件夹复制的文件已作为库文件添加到应用程序中。 主题文件和导航文件已添加到项目源文件夹中。

大部分工作都是基于本网站的教程  http://weblogs.java.net/blog/pkeegan/archive/2007/05/javahelp_and_sw.html

现在我想实现javahelp搜索引擎  来自NetBeans IDE

这样可以自动创建搜索引擎。 而不是从命令提示符。

任何建议。

1 个答案:

答案 0 :(得分:0)

您似乎需要编写一个使用com.sun.java.help.search.Indexer类的程序。它的main()方法是运行jhindexer命令时执行的方法。

Indexer类没有官方文档,但这里有一些提示(来自HelpSetMaker SF项目的文档):http://helpsetmaker.sourceforge.net/userdoc/doc55.html

HelpSetMaker项目的完整(GPL许可)源代码位于:http://publicgit.cantamen.de/?p=helpsetmaker。请务必查看OutputCreatorThread.javacreateHelpsetSearchIndex()方法。