Java中如何判断Excel文件的格式?
我正在开发一个适用于 Android 移动平台的轻量级 Java 客户端库,它可以读取和写入 .xls(BIFF) 和 Office 2003 XML 格式的 Excel 文件。
我们一决定开始,就遇到了一个基本问题。 Java中如何确定excel文件的格式?
I am working on a light weight Java client library for Android mobile platform that can read and write to Excel files in .xls(BIFF) and Office 2003 XML format.
No sooner we decided to start than we got stuck with a basic question. How do we determine the format of the excel files in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想我只会使用 XML 解析器解析该文件,如果没有收到异常,我会推断它是 XML。
I guess I would just parse the file using an XML parser and if I dont get an Exception I will infer that it is an XML.