gpt4 book ai didi

excel - Apache POI 有 Scala 包装器吗?

转载 作者:行者123 更新时间:2023-12-01 17:18:08 25 4
gpt4 key购买 nike

我想使用 Apache POI 在 Scala 应用程序中读取/创建 Excel 文件。当然,我可以直接使用 POI 库,毕竟它是 Java,但我想要有 Scala 的感觉。那么是否有一个 Scala 包装器带来 Scala 的感觉(使用隐式转换),即某种免费提供的“Scala-POI-DSL”?

最佳答案

感谢 Dave Griffith 的回答,我已经破解了与他的 DSL 类似的东西。

Workbook {
Sheet("name") {
Row(1) {
Cell(1, "data") :: Cell(2, "data2") :: Nil
} ::
Row(2) {
Cell(1, "data") :: Cell(2, "data2") :: Nil
} :: Nil
} ::
Sheet("name2") {
Row(2) {
Cell(1, "data") :: Cell(2, "data2") :: Nil
} :: Nil
} :: Nil
}.save("/home/path/ok.xls")

代码可以找到here .

关于excel - Apache POI 有 Scala 包装器吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5032101/

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