Как читать версию OpenOffice в Java (1.6)
Я разработчик C# и на самом деле мне нужно разработать некоторые функции в Java 1.6 для OpenOffice-PlugIn. Одна из этих функций - получить метаинформацию о среде, например, версию исполняемого OpenOffice. В Google я не нашел что-то. Я знаю, что существует запись в реестре. Но это просто подраздел без значения. Кто-нибудь знает, как я могу получить номер версии исполняемого OpenOffice с Java 1.6?
Редактировать:
Теперь у меня есть решение. Я помогу другим разработчикам, если у них возникнет такая же проблема. Это должно быть только в капсуле в методе.
XComponentContext componentContext = com.sun.star.comp.helper.Bootstrap.bootstrap();
XMultiComponentFactory xRemoteServiceManager = componentContext.getServiceManager();
Object configProvider = xRemoteServiceManager.createInstanceWithContext( "com.sun.star.configuration.ConfigurationProvider", componentContext);
XMultiServiceFactory xConfigProvider = (XMultiServiceFactory) UnoRuntime.queryInterface( XMultiServiceFactory.class, configProvider);
PropertyValue[] lParams = new PropertyValue[1];
lParams[0] = new PropertyValue();
lParams[0].Name = "nodepath";
lParams[0].Value = "/org.openoffice.Setup/Product";
Object xAccess = xConfigProvider.createInstanceWithArguments( "com.sun.star.configuration.ConfigurationAccess" , lParams);
XNameAccess xNameAccess = (com.sun.star.container.XNameAccess) UnoRuntime.queryInterface(XNameAccess.class, xAccess);
String OOVersion = (String)xNameAccess.getByName("ooSetupVersion");
return OOVersion;
1 ответ
Посмотрите этот пример кода, как использовать интерфейс ConfigurationProvider. Вы можете найти этот пример на python полезным и для понимания того, как все работает.
NODE_PRODUCT = "org.openoffice.Setup/Product";
public String getOpenOfficeVersion() {
try {
// OOo >= 2.2 returns major.minor.micro
return getOpenOfficeProperty(NODE_PRODUCT, "ooSetupVersionAboutBox");
} catch (OpenOfficeException noSuchElementException) {
// OOo < 2.2 only returns major.minor
return getOpenOfficeProperty(NODE_PRODUCT, "ooSetupVersion");
}
}
public String getOpenOfficeProperty(String nodePath, String node) {
if (!nodePath.startsWith("/")) {
nodePath = "/" + nodePath;
}
String property = "";
// create the provider and remember it as a XMultiServiceFactory
try {
final String sProviderService = "com.sun.star.configuration.ConfigurationProvider";
Object configProvider = connection.getRemoteServiceManager().createInstanceWithContext(
sProviderService, connection.getComponentContext());
XMultiServiceFactory xConfigProvider = UnoRuntime.queryInterface(
com.sun.star.lang.XMultiServiceFactory.class, configProvider);
// The service name: Need only read access:
final String sReadOnlyView = "com.sun.star.configuration.ConfigurationAccess";
// creation arguments: nodepath
PropertyValue aPathArgument = new PropertyValue();
aPathArgument.Name = "nodepath";
aPathArgument.Value = nodePath;
Object[] aArguments = new Object[1];
aArguments[0] = aPathArgument;
// create the view
XInterface xElement = (XInterface) xConfigProvider.createInstanceWithArguments(sReadOnlyView, aArguments);
XNameAccess xChildAccess = UnoRuntime.queryInterface(XNameAccess.class, xElement);
// get the value
property = (String) xChildAccess.getByName(node);
} catch (Exception exception) {
throw new OpenOfficeException("Could not retrieve property", exception);
}
return property;
}