我想使用Apache POI 库解析一个 excel 文件,以将开发模式下的一些数据引导到我的 grails 2.0.1 应用程序中。
我尝试使用 Grails excel-import 插件,但是当我执行 run-app 时插件会自动卸载。
因此,我决定暂时不使用插件。首先,我将下一个 jar 复制到 grails 应用程序 lib 文件夹中
$ls -la lib
poi-3.7-20101029.jar
poi-ooxml-3.7-20101029.jar
poi-ooxml-schemas-3.7-20101029.jar
xmlbeans-2.3.0.jar
我读过我应该在grails-app/conf/BuildConfig.groovy
. 所以,我添加了下一个:
dependencies {
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.
compile ('org.apache.poi:poi:3.7', 'org.apache.poi:poi-ooxml:3.7')
// runtime 'mysql:mysql-connector-java:5.1.16'
}
但是,当我执行 run-app 时,应用程序仍然无法找到罐子。
grails> run-app
| Compiling 76 source files
| Compiling 30 source files.
| Error Compilation error: startup failed:
UMEExcelImporter.groovy: 8: unable to resolve class org.apache.poi.xssf.usermodel.XSSFSheet
@ line 8, column 1.
import org.apache.poi.xssf.usermodel.XSSFSheet
^
UMEExcelImporter.groovy: 7: unable to resolve class org.apache.poi.xssf.usermodel.XSSFWorkbook
@ line 7, column 1.
import org.apache.poi.xssf.usermodel.XSSFWorkbook
^
UMEExcelImporter.groovy: 9: unable to resolve class org.apache.poi.xssf.usermodel.XSSFRow
@ line 9, column 1.
import org.apache.poi.xssf.usermodel.XSSFRow
我没有使用任何 IDE。欢迎任何反馈!