../Groovy/Groovy-1.7.6/lib
ディレクトリ)にコピーするだけで使えるようになります。
次のスクリプトは、PlantUMLのバージョンとエンコードしたURLを出力します:
println net.sourceforge.plantuml.version.Version.version() println
net.sourceforge.plantuml.code.TranscoderUtil.getDefaultTranscoder().encode("Bob->Alice:hello")
画像を生成したい場合:
s = new net.sourceforge.plantuml.SourceStringReader("@startuml\nBob->Alice:hello\n@enduml")
FileOutputStream file = new FileOutputStream("c:/testGroovy2.png")
s.generateImage(file);
file.close()