在 Calc 中,我将单元格值设置为“2006/10/03 13:33:55.448”,Calc 说它是标准格式。我正在使用 Java 执行此操作,我想将格式设置为“DD.MM.YY HH:MM:SS AM/PM”:
XNumberFormatTypes xFormatTypes = (XNumberFormatTypes) UnoRuntime.queryInterface(XNumberFormatTypes.class, xNumberFormats);
int myDateFormat = xNumberFormats.addNew("DD.MM.YY HH:MM:SS AM/PM", defaultLocale);
XPropertySet cellRangePropSet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, cellRange);
cellRangePropSet.setPropertyValue("NumberFormat", new Integer(myDateFormat));
但细胞看起来还是一样的。我是否必须刷新范围以使单元格显示“03.10.06 01:33:55 PM”?