KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
poi4s
★ 21
Open GitHub ↗
Elegant interface to Excel for Scala
Download README (.md)
Explore Similar Repositories
cmake-debhelper
:
Leveraging debhelpers when packaging for Debian with CMake/CPack
nagioseasier-module
:
Make nagios easier to use, because you deserve it.
tod
:
A simple command line todo manager
UIColor-iOS7Colors
:
I category to add iOS7 color helper accessors to UIColor.
jsDAVlib
:
A DAV (WebDAV, CardDAV, CalDAV) compatible library in JavaScript
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
poi4s
?
Download (.md)
poi4s ======== Elegant interface to Excel for Scala Setup -------- ```scala resolvers += "amateras-repo" at "http://amateras.sourceforge.jp/mvn/" libraryDependencies += "jp.sf.amateras" %% "poi4s" % "0.0.1" ``` Example -------- ```scala import jp.sf.amateras.poi4s._ // workbook is POI's Workbook object workbook.sheet(0).foreach { sheet => // find header cell sheet.find(_.text == "Name").map { header => // scan specified column sheet.column(header.colNum).filter(_.rowNum > header.rowNum).foreach { cell => println(cell.text) } } } ``` Release Notes -------- ### 0.0.1 - 04 Mar 2014 * Initial public release