LibreOffice Java - 无法将 uno.Any 转换为 XPropertySet

Posted

技术标签:

【中文标题】LibreOffice Java - 无法将 uno.Any 转换为 XPropertySet【英文标题】:LibreOffice Java - Cannot Cast uno.Any to XPropertySet 【发布时间】:2017-11-04 22:32:38 【问题描述】:

我正在尝试使用 Java 与 LibreOffice API 进行交互。目前,我正在为诸如检索对象、插入文本等操作创建一个辅助类。但是,我无法将验证应用于电子表格文档。我的功能如下:

 public static void applyValidation(int x1, int y1,  int x2, int y2, XSpreadsheet sheet, ValidationType type) throws UnknownPropertyException, WrappedTargetException, IndexOutOfBoundsException, IllegalArgumentException, PropertyVetoException 
        XCellRange range = sheet.getCellRangeByPosition(x1, y1, x2, y2);
        XPropertySet propSet = UnoRuntime.queryInterface(XPropertySet.class, range);

        XPropertySet validProp =(XPropertySet) propSet.getPropertyValue("Validation");
        validProp.setPropertyValue("ShowErrorMessage", new Boolean(true));
        validProp.setPropertyValue("ErrorMessage", "Please enter a valid time");
        validProp.setPropertyValue("ErrorAlertStyle", ValidationAlertStyle.INFO);



         propSet.setPropertyValue("Validation", validProp);

  

它仿照OpenOffice Developer's Guide 中提供的示例。

我正在尝试从测试类调用该方法:

@Test
public void test() 
try 
XComponentLoader loader = LibreBootstrapper.getLoader();
    assertTrue( (loader instanceof XComponentLoader));
    XSpreadsheetDocument doc = SpreadsheetHelper.getSpreadsheetDoc(loader);
    assertTrue( (doc instanceof XSpreadsheetDocument));
    XSpreadsheet sheet = SpreadsheetHelper.getSheetByIndex(SpreadsheetHelper.getSheets(doc), 0);
    SpreadsheetHelper.insertIntoCell(0, 0, sheet, 400);
    SpreadsheetHelper.insertIntoCell(1, 0, sheet, 300);
    SpreadsheetHelper.insertFormula(2, 0, sheet, "=SUM(A1:B1)");
    SpreadsheetHelper.insertIntoCell(2, 2, sheet, "Hello World!");
    SpreadsheetHelper.setProperty(0, 0, 8, 10, sheet, "CellStyle", "Heading 1");
    int formatCode = SpreadsheetHelper.getFormatCode(doc, NumberFormat.TIME);   
    SpreadsheetHelper.setProperty(0, 0, 8, 10, sheet, "NumberFormat", formatCode);
    SpreadsheetHelper.applyValidation(0, 0, 8, 10, sheet,  ValidationType.TIME);

 catch (Exception e) 

    e.printStackTrace();



但是,我收到以下错误:

  java.lang.ClassCastException: com.sun.star.uno.Any cannot be cast to com.sun.star.beans.XPropertySet

有以下堆栈

    at edu.cmu.office.SpreadsheetHelper.applyValidation(SpreadsheetHelper.java:125)
    at HelperTests.test(HelperTests.java:32)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:539)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:761)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:461)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:207)

我什至尝试从示例中复制和粘贴代码(链接到上面),但仍然收到相同的错误。

我对 LibreOffice API 不太熟悉;任何帮助将不胜感激。

编辑:

实际抛出错误的行如下:

            XPropertySet validProp =(XPropertySet) propSet.getPropertyValue("Validation");

即使直接从示例中复制和粘贴,我也会收到相同的错误:

      public static void applyValidation(int x1, int y1,  int x2, int y2, XSpreadsheet sheet, ValidationType type) throws UnknownPropertyException, WrappedTargetException, IndexOutOfBoundsException, IllegalArgumentException, PropertyVetoException 

//          XCellRange range = sheet.getCellRangeByPosition(x1, y1, x2, y2);
//          XPropertySet propSet = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class, range);
//
//          XPropertySet validProp =(XPropertySet) propSet.getPropertyValue("Validation");
//          validProp.setPropertyValue("ShowErrorMessage", new Boolean(true));
//          validProp.setPropertyValue("ErrorMessage", "Please enter a valid time");
//          validProp.setPropertyValue("ErrorAlertStyle", ValidationAlertStyle.INFO);       
//
//           propSet.setPropertyValue("Validation", validProp);
//           
             // --- Data validation ---
             com.sun.star.table.XCellRange xCellRange = sheet.getCellRangeByName("A7:C7");
             com.sun.star.beans.XPropertySet xCellPropSet = (com.sun.star.beans.XPropertySet)
                 UnoRuntime.queryInterface(com.sun.star.beans.XPropertySet.class, xCellRange);

             // validation properties
             com.sun.star.beans.XPropertySet xValidPropSet = (com.sun.star.beans.XPropertySet)
                 xCellPropSet.getPropertyValue("Validation");
             xValidPropSet.setPropertyValue("Type", com.sun.star.sheet.ValidationType.DECIMAL);
             xValidPropSet.setPropertyValue("ShowErrorMessage", new Boolean(true));
             xValidPropSet.setPropertyValue("ErrorMessage", "This is an invalid value!");
             xValidPropSet.setPropertyValue("ErrorAlertStyle", com.sun.star.sheet.ValidationAlertStyle.STOP);

             // condition
             com.sun.star.sheet.XSheetCondition xCondition = (com.sun.star.sheet.XSheetCondition)
                 UnoRuntime.queryInterface(com.sun.star.sheet.XSheetCondition.class, xValidPropSet);
             xCondition.setOperator(com.sun.star.sheet.ConditionOperator.BETWEEN);
             xCondition.setFormula1("0.0");
             xCondition.setFormula2("5.0");

             // apply on cell range
             xCellPropSet.setPropertyValue("Validation", xValidPropSet);

      

在下面一行:

             com.sun.star.beans.XPropertySet xValidPropSet = (com.sun.star.beans.XPropertySet)
             xCellPropSet.getPropertyValue("Validation");

【问题讨论】:

“测试类”代码只是其他代码的重复——可能是复制/粘贴错误。此外,我们无法判断错误发生在哪一行——哪一行是 125? 我很抱歉;我无意中复制了帮助程序类,而不是提供实际的测试类。错误已得到纠正。抛出错误的行是XPropertySet validProp =(XPropertySet) propSet.getPropertyValue("Validation"); 完全偏离主题,但尽量避免使用 UNO api。这非常慢,而且根本没有经过深思熟虑,而且实际上无法调试......使用类似 odf-toolkit 的东西或直接在内存中处理文档的任何东西。如果您的文档是大中型,您最多可以节省 1'000 倍的处理时间(来源:个人经验) 这是非常好的建议@S。皮勒。我没有意识到还有其他选择。感谢分享! 【参考方案1】:

您好像忘记正确投射了。代码应该和例子一样:

XPropertySet xCellPropSet = (XPropertySet)
    UnoRuntime.queryInterface(XPropertySet.class, xCellRange);

...而不是这个:

XPropertySet propSet = UnoRuntime.queryInterface(XPropertySet.class, range);

编辑

显然,示例不正确。这是工作代码:

XPropertySet validProp = (XPropertySet)
    UnoRuntime.queryInterface(XPropertySet.class, 
        propSet.getPropertyValue("Validation"));

这些类型的问题在使用 Java 和 UNO 时很烦人。我更喜欢 Python 和 UNO,其中一个原因是因为 queryInterface 不是必需的。

【讨论】:

感谢您的建议。不幸的是,添加演员并没有解决问题。事后看来,我意识到我应该指定哪一行实际上引发了错误。我将编辑我的初始帖子以包含此详细信息。 非常感谢!希望我能多次投票;答案绝对值得。 :)

以上是关于LibreOffice Java - 无法将 uno.Any 转换为 XPropertySet的主要内容,如果未能解决你的问题,请参考以下文章

无法在端口 2002 上连接 LibreOffice?

Libreoffice 无法在 php 运行时启动

无法在 LibreOffice 中检索 XShape 的容器

将LibreOffice文档转换为豆瓣日记

即使文件具有 777 权限,LibreOffice 转换为 pdf 也会产生文件无法加载错误

如何将 python 源代码添加到 libreoffice writer?