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
Related Q & A:
- How To Use Omegle With Proxy?Best solution by iamsport.org
- How To Use Rosetta Stone On Ipad?Best solution by Quora
- How To Use Speedy Catheter?Best solution by youtube.com
- How To Use Rosetta Stone For Ipad?Best solution by Quora
- How to use Bluetooth GPS module in an app?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.