我已经在 AEM 中安装了 groovyconsole 并且有一堆我想保存在文件中作为输出的东西。
在这篇文章之后,我尝试了:
def filePath = "/content/corporate/reports/output.csv"
File output = new File(filePath)
output.append('Hello world!')
我最终得到一个 FileNotFoundException。我直接创建文件只是为了确保,但这也无济于事。
希望对此有所了解。谢谢。