Library for generating CHM from java

Can someone help me with a library that can generate CHM files. Like POI for Excel or other MS formats.

thanks

+4
source share
3 answers

There is no such Java library. You just need to call the CHM compiler in the documentation directory (usually it is placed in C: \ Program Files \ HTML Help Workshop \ hhc.exe).

You might also be interested in the Java-based Javadoc2Help tool :

Javadoc2Help is a Java-based tool for converting javadoc html output generated into Java Help, HTMl Help ( CHM ), and Oracle Help for Java (OHJ).

The package contains the main library lib / Javadoc2Help.jar . You can try to reuse it to generate CHM, but it just calls the compiler.

+1
source

Free Pascal in its development branch has a library for generating CHM.

You can try to connect this library to the DLL and provide it with JNI (or COM for .NET) to have a built-in solution

0
source

A bit late, but one solution is to use AurigaDoc . AurigaDoc uses xml / html to write the source document and vendor tools to convert them to several formats, including html, pdf, chm.

0
source

Source: https://habr.com/ru/post/1335971/


All Articles