java excel 交互
我正在尝试用 java 创建 Excel 文件。现在,我正在使用 Apache POI 库创建文件并将其保存到本地驱动器。有没有办法启动Excel并填充数据而不将其保存到硬盘驱动器?
I'm trying to create Excel file in java. Right now, i'm using Apache POI library to create the file and save it to local drive. Is there a way to start up excel and populate the data without saving it to hard drive?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请考虑使用从服务器下载 Excel 文件中显示的方法Servlet。我已将其用于 CSV 文件,但
xlsx
mime 类型扩展看起来很有吸引力。Consider the approach shown in Downloading Excel file from server using servlets. I've used it for CSV files, but the
xlsx
mime type extension looks appealing.也许是这样的
Something like this maybe