Is it possible to use OLE Automation in Java? If not, why is it not possible in Java?

I'm looking to automate the exporting of excel spreadsheets in different format (ie, .csv etc...)

Thanks for the answers in advance :)

link|improve this question

67% accept rate
I used nevaobject, but that was over a decade ago now. – Tom Hawtin - tackline Jul 13 '11 at 15:36
feedback

2 Answers

up vote 1 down vote accepted

You can use JACOB. But there will be some pain involved as it's not documented very well and the performance is not the best. It can also be hard to get it running correctly for you environment depending on which version of Windows you are targetting. I would definitely not use it if you are building a scalable web application. Another option would be Apache POI which has really come a long way from its early roots and is used in alot of production ready tools like JBoss Drools. If you decide to go with JACOB then I recommend you read this SO thread:

Is there a good reference for using OLE Automation (from Java)?

link|improve this answer
would it be easier to use a scripting language as supposed to Java – Shahab Jul 13 '11 at 13:48
If you have flexibility with the solution I would go with VB script or Powershell. – Perception Jul 13 '11 at 13:53
feedback

There is a library called JACOB that allows precisely what you're looking for. What do you mean by "from the Java API?" You mean from from the official J2SE packages? I'm not sure how to answer that other than to say that J2SE doesn't include libraries for every conceivable need under the sun, especially those that only work on a single operating system. That's why third party packages exist.

link|improve this answer
was i guess i was hoping that sun/oracle would have had done it. Would it be easier to using a scripting language? instead of java – Shahab Jul 13 '11 at 13:46
Depends on your goal. If you're trying to integrate an existing Java application and existing Java libraries, I'd stick with Java. – Dan Jul 13 '11 at 13:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.