How to use eval via Jython?

How to use win32com module in Jython

  • 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 http://poi.apache.org, 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!

  • Answer:

    Will you please tell me how to use win32com module in Jython? You can't and you stated the reason yourself. Win32com module is written in C. Jython contains all the modules that are originally written in Python, but (Java translations of) only few of the CPython modules that are originally written in native code. Win32com module is not included. I think Jython's idea is to be pure Java, and interoperation with Microsoft COM modules can't be done in pure Java. It could in principle be implemented using JNI and lots of work, but hasn't been done. If your goal is to convert Word files to HTML, using Java, have a look at http://poi.apache.org/.

RonQi at Stack Overflow Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.