에서이 작업을 수행하는 방법을 알려 주시기 바랍니다, 나는 다음과 같은 스크립트를 가지고 올 수 :
@Grab(group='org.apache.poi', module='poi-ooxml', version='3.7')
import org.apache.poi.xwpf.usermodel.XWPFDocument
XWPFDocument doc = new XWPFDocument()
new File('/some/dir').eachFile{ File f ->
if(f.directory) return
doc.createParagraph().createRun().text = "--------- $f.name ---------"
doc.createParagraph().createRun().text = f.text
}
new File('result.docx').withOutputStream{ doc.write it }
결과 DOCX 파일은 다음이다 "구조"
------------- error.gsp -------------
<!doctype html>
<html>
<head>
....
------------- index.gsp -------------
<!doctype html>
<html>
은 우리가 지금까지 – injecteer
내가 그루비 스크립트를 처음 진행하는 방법을 잘하고 나는 당신이 이미 시도 무엇인지 알려 주시기 바랍니다. – Vinu