gpt4 book ai didi

java - 如何在Java中获取 "last saved by"Office文件属性

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:22:31 25 4
gpt4 key购买 nike

我正在尝试从 MS Office 2013 文件(docx、xlsx、pptx ...)中获取“最后保存者”属性。我正在使用 Apache POI,但我只能使用以下代码获取文件的作者:

OPCPackage pkg = OPCPackage.open(file);
POIXMLProperties props = new POIXMLProperties(pkg);
props.getCoreProperties().getCreator();

有没有办法获得“最后保存者”属性?

最佳答案

查看 Apache POI OOXML Properties Extractor作为此类问题的良好灵感来源,我们认为您需要做的是

OPCPackage pkg = OPCPackage.open(file);
POIXMLProperties props = new POIXMLProperties(pkg);
PackagePropertiesPart ppropsPart = props.getCoreProperties().getUnderlyingProperties();

Date created = ppropsPart.getCreatedProperty().getValue();
Date modified = ppropsPart.getModifiedProperty().getValue();

String lastModifiedBy = ppropsPart.getLastModifiedByProperty().getValue();

这会给你最后修改文件的人、时间和创建时间

关于java - 如何在Java中获取 "last saved by"Office文件属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27225499/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com