新 POI 3.6 API (XSSF) 与 Excel 2007 工作簿配合使用时出现的问题和陷阱

发布于 2024-08-17 14:00:33 字数 244 浏览 5 评论 0原文

我刚刚开始使用 2009 年 12 月发布的新 POI 3.6 http://poi.apache.org XSSF更新后的 API 支持使用 Java 读取和写入 OOXML 电子表格格式 (.xslx)。到目前为止,我对 API 印象非常深刻,并且还没有遇到任何问题。

您在使用 3.6 API 时遇到了哪些问题或陷阱(如果有)?

I just started using the new POI 3.6 http://poi.apache.org XSSF which was released in December 2009. The updated API provides support for reading and writing in the OOXML spreadsheet format (.xslx) with Java. So far I've been pretty impressed with the API and haven't really encountered any issues with it.

What issues or gotchas have you encountered working with the 3.6 API if any?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱的十字路口 2024-08-24 14:00:33

我遇到受密码保护的 Excel 文件的问题,
它直接抛出异常。
我想告诉用户该文件受密码保护,但首先我得到了异常。这是我拿到文件后所做的事情。

if( wbook1.isWriteProtected() ) {
        System.out.println(" File is Password protected ");
        return false;
}

i got a problem with password protected excel files,
it directly throws the exception.
i want to tell theuser that file is password protected but at the first place itself i get the exception. This is wat i did after taking the file.

if( wbook1.isWriteProtected() ) {
        System.out.println(" File is Password protected ");
        return false;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文