【发布时间】:2017-06-08 10:37:25
【问题描述】:
我无法在 IntelliJ 中运行或调试 Groovy 脚本。我收到错误消息:Error: Could not find or load main class org.codehaus.groovy.tools.GroovyStarter。从 cmd 运行脚本可以正常工作(我使用的是 groovyc 和 groovy 命令)。
import org.apache.pdfbox.pdmodel.PDDocument
import org.fit.pdfdom.PDFDomTree
import org.w3c.dom.Document
// load the PDF file using PDFBox
PDDocument pdf = PDDocument.load(new java.io.File("file.pdf"))
// create the DOM parser
PDFDomTree parser = new PDFDomTree()
// parse the file and get the DOM Document
Document dom = parser.createDOM(pdf)
【问题讨论】:
-
groovy 库不在类路径中
-
如何将 groovy 库添加到类路径中?
-
在这里查看简单的答案:stackoverflow.com/questions/43450683/… 它对我有用。
标签: intellij-idea groovy