I have some codes of python that convers word file to html file, it uses win32com module, like this
from win32com import client as wc
I hoped to invoke python program in java codes, so I used Jython. But Jython don't recognition win32com module, throws exception like this
ImportError: No module named win32com
I searched some information in internet, someone says "The problem is that the win32api module is implemented in C so it is not available from Jython." see also http://permalink.gmane.org/gmane.comp.lang.jython.user/1371
Will you please tell me how to use win32com module in Jython?
I tried to convert Word files that include math formula to HTML with Apache POI, but always doesn't work well. So I have to use python and win32com module, because it can convert math formulas to images like Microsoft Office Word does. Does anyone have any suggestions about converting math formulas in Word filse with POI?
Thanks for help!