Using the Java UNO runtime and API in your IDE

1. install open office
2.1 in eclipse create a user library: openoffice point to following jars

juh.jar jurt.jar ridl.jar java_uno.jar unoloader.jar unoil.jar

2.2 in eclipse create a OO_PROGRAM variable point to soffice location

3. create a java project, add openoffice library, OO_PROGRAM to this project classpath

3.1 create a UNO java file

for example:

FirstUnoContact.java

package org.openoffice.test;

public class FirstUnoContact {
 
    public static void main(String[] args) {
	try {
	    // get the remote office component context
	    com.sun.star.uno.XComponentContext xContext = com.sun.star.comp.helper.Bootstrap.bootstrap();
 
	    System.out.println("Connected to a running office ...");
 
	    com.sun.star.lang.XMultiComponentFactory xMCF = xContext.getServiceManager();
 
        String available = (xMCF != null ? "available" : "not available");
	    System.out.println("remote ServiceManager is " + available);
	} catch (java.lang.Exception e) {
	    e.printStackTrace();
	} finally {
	    System.exit(0);
	}
    }
}
4. run it

如果OO是启动的话,输出可能是如下结果:

Connected to a running office ...
remote ServiceManager is available

http://wiki.openoffice.org/wiki/Documentation/DevGuide/FirstSteps/Configuration

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值