我有一个 groovy 配置文件,看起来像
section1 {
prop1 = val1
prop2 = val2
section2 {
prop3 = val3
{
}
// other style properties in this file
anotherprop = someval
// as well as some other statements
println "hello there"
例如,我想编写一个 groovy 脚本来更改 prop3 的值。在 groovy 中有没有好的方法来做到这一点?这有点困难,因为该文件包含多种样式的属性以及 println。