我无法在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)
最佳答案
我错过了pom.xml文件中的依赖项。错误已解决。谢谢大家的提示:)
关于intellij-idea - 在IntelliJ中运行Groovy脚本失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44433417/